diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj index e96c3c65ad91..0fee8df2ae31 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/DeviceProvisioningServices.Test.csproj @@ -13,7 +13,7 @@ - + \ No newline at end of file diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsAccessPolicyTests.ps1 b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsAccessPolicyTests.ps1 index 2606ce66e727..3798f6a79b1f 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsAccessPolicyTests.ps1 +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsAccessPolicyTests.ps1 @@ -30,7 +30,7 @@ function Test-AzureIotDpsAccessPolicyLifeCycle # Constant variable $AccessPolicyDefaultKeyName = "provisioningserviceowner" - $AccessPolicyDefaultRights = "ServiceConfig, DeviceConnect, EnrollmentWrite" + $AccessPolicyDefaultRights = "ServiceConfig, EnrollmentWrite, DeviceConnect" $NewAccessPolicyKeyName = "Access1" $NewAccessPolicyRights = "ServiceConfig" diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsEnrollmentGroupTests.ps1 b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsEnrollmentGroupTests.ps1 index 70ec8a268c12..6c29f0c8ccc4 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsEnrollmentGroupTests.ps1 +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsEnrollmentGroupTests.ps1 @@ -52,7 +52,7 @@ function Test-AzIotDpsEnrollmentGroupLifeCycle Assert-True { $iotHub.Name -eq $IotHubName } # Add a key to IoT Hub - $hubKeys = Add-AzIoTHubKey -Name $IotHubName -ResourceGroupName $ResourceGroupName -KeyName $hubKeyName -Rights ServiceConnect + $hubKeys = Add-AzIoTHubKey -Name $IotHubName -ResourceGroupName $ResourceGroupName -KeyName $hubKeyName -Rights RegistryWrite,ServiceConnect Assert-True { $hubKeys.Count -gt 1 } # Get key information from IoT Hub diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsEnrollmentTests.ps1 b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsEnrollmentTests.ps1 index a9531508fff9..ff60699c9ba9 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsEnrollmentTests.ps1 +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsEnrollmentTests.ps1 @@ -55,7 +55,7 @@ function Test-AzIotDpsEnrollmentLifeCycle Assert-True { $iotHub.Name -eq $IotHubName } # Add a key to IoT Hub - $hubKeys = Add-AzIoTHubKey -Name $IotHubName -ResourceGroupName $ResourceGroupName -KeyName $hubKeyName -Rights ServiceConnect + $hubKeys = Add-AzIoTHubKey -Name $IotHubName -ResourceGroupName $ResourceGroupName -KeyName $hubKeyName -Rights RegistryWrite,ServiceConnect Assert-True { $hubKeys.Count -gt 1 } # Get key information from IoT Hub diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsLinkedHubTests.ps1 b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsLinkedHubTests.ps1 index 88a63554a2fd..faf247c5500a 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsLinkedHubTests.ps1 +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsLinkedHubTests.ps1 @@ -48,7 +48,7 @@ function Test-AzureIotDpsLinkedHubLifeCycle Assert-True { $iotHub.Name -eq $IotHubName } # Add a key to IoT Hub - $hubKeys = Add-AzIoTHubKey -Name $IotHubName -ResourceGroupName $ResourceGroupName -KeyName $hubKeyName -Rights ServiceConnect + $hubKeys = Add-AzIoTHubKey -Name $IotHubName -ResourceGroupName $ResourceGroupName -KeyName $hubKeyName -Rights ServiceConnect,RegistryWrite Assert-True { $hubKeys.Count -gt 1 } # Get key information from IoT Hub diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsRegistrationTests.ps1 b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsRegistrationTests.ps1 index b31a29ae63fd..3fe110220d55 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsRegistrationTests.ps1 +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/ScenarioTests/IotDpsRegistrationTests.ps1 @@ -50,7 +50,7 @@ function Test-AzIotDpsRegistrationLifeCycle Assert-True { $iotHub.Name -eq $IotHubName } # Add a key to IoT Hub - $hubKeys = Add-AzIoTHubKey -Name $IotHubName -ResourceGroupName $ResourceGroupName -KeyName $hubKeyName -Rights ServiceConnect + $hubKeys = Add-AzIoTHubKey -Name $IotHubName -ResourceGroupName $ResourceGroupName -KeyName $hubKeyName -Rights RegistryWrite,ServiceConnect Assert-True { $hubKeys.Count -gt 1 } # Get key information from IoT Hub diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsAccessPolicyTests/IotDpsAccessPolicyLifeCycle.json b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsAccessPolicyTests/IotDpsAccessPolicyLifeCycle.json index 88aaf4a3c887..0fe95e05a08b 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsAccessPolicyTests/IotDpsAccessPolicyLifeCycle.json +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsAccessPolicyTests/IotDpsAccessPolicyLifeCycle.json @@ -4,21 +4,21 @@ "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b614534-1e92-4fb6-ba19-28abcaaf3cb4" + "dcb22111-9a70-460a-a8b4-9c50da5462ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "40e04728-5a6c-4ee3-b382-6a4295a550e1" + "2b36f578-2235-4acf-a9ac-4b9055060e2d" ], "x-ms-correlation-request-id": [ - "40e04728-5a6c-4ee3-b382-6a4295a550e1" + "2b36f578-2235-4acf-a9ac-4b9055060e2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064101Z:40e04728-5a6c-4ee3-b382-6a4295a550e1" + "WESTUS:20230217T005520Z:2b36f578-2235-4acf-a9ac-4b9055060e2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:41:00 GMT" + "Fri, 17 Feb 2023 00:55:20 GMT" + ], + "Connection": [ + "close" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +57,28 @@ "-1" ], "Content-Length": [ - "5586" + "9626" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\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 \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\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 \"2018-12-01-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 ],\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/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"roleDefinitionId\": \"d04fc6c0-fc10-4ab8-b7de-c979247c3b65\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"provisioningServiceOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-09-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations/provisioningServiceOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway EAST\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\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\": \"IotHubs/failover\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"Australia Central\"\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps9361?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzOTM2MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps8840?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzODg0MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ba9ba870-d470-492c-9a82-dfbff2076ad9" + "cca49601-ac5d-4319-b880-d18012f5aa8b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -85,6 +87,7 @@ "29" ] }, + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -96,13 +99,13 @@ "1199" ], "x-ms-request-id": [ - "6927c1c1-18a2-4d12-9647-a1429eaf3465" + "42af624f-3064-4d66-9078-6c74ed057a78" ], "x-ms-correlation-request-id": [ - "6927c1c1-18a2-4d12-9647-a1429eaf3465" + "42af624f-3064-4d66-9078-6c74ed057a78" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064102Z:6927c1c1-18a2-4d12-9647-a1429eaf3465" + "WESTUS:20230217T005521Z:42af624f-3064-4d66-9078-6c74ed057a78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +114,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:41:01 GMT" + "Fri, 17 Feb 2023 00:55:20 GMT" ], "Content-Length": [ "165" @@ -123,25 +126,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361\",\r\n \"name\": \"ps9361\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840\",\r\n \"name\": \"ps8840\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c7dc406b-86c6-4f51-9186-8a50e4601e18" + "a29452e8-66e7-4523-b444-06cefc5f644f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -151,6 +153,7 @@ "86" ] }, + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -159,7 +162,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/operationResults/b3NfaWRfMmE4MDZjMmYtZjdlNC00NjVhLWJkZmUtNjgyYzdjNGVkMjZi?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/operationResults/aWQ9b3NfaWRfZjVkNzk5YTEtYTgzYS00NDZlLWE3NDktYjQ5M2FiZWMyODRmO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +171,13 @@ "4999" ], "x-ms-request-id": [ - "e2484aac-a956-4575-9586-e4eb47b4cbe4" + "c174907e-206e-4ba4-90bf-59cbe82b79a3" ], "x-ms-correlation-request-id": [ - "e2484aac-a956-4575-9586-e4eb47b4cbe4" + "c174907e-206e-4ba4-90bf-59cbe82b79a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064104Z:e2484aac-a956-4575-9586-e4eb47b4cbe4" + "WESTUS:20230217T005523Z:c174907e-206e-4ba4-90bf-59cbe82b79a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,7 +186,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:41:04 GMT" + "Fri, 17 Feb 2023 00:55:22 GMT" ], "Content-Length": [ "462" @@ -195,25 +198,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6700\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps9361\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1963\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps8840\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAcX17c=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"krhJGKTnoPSJF5mUfxD5a2He0eYEkt7LYk/c5XMDIDM=\",\r\n \"secondaryKey\": \"kwqbIa1CbSOSwNF3+n5px9faC4ig86p75UUjG2JoICY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "71d28c75-83c1-4377-8660-80b40e13e988" + "8f418e8f-e6ca-44c8-92d8-b6d2536ba42a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -223,6 +225,7 @@ "651" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAAABbfA4c=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -231,22 +234,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/operationResults/b3NfaWRfNmJhNjgwZDgtNzMyYS00MWJjLWI5MDQtN2VkMThhYTE5MDhi?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/operationResults/aWQ9b3NfaWRfMDc2Zjk5OGItZmE0MC00MThkLThjMzMtN2M3MzlmYWJiMjdlO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4998" + "4999" ], "x-ms-request-id": [ - "74226b68-2ba7-429d-bd7e-3331ca941419" + "95f49f29-f3aa-4807-afb0-1b3a951ac017" ], "x-ms-correlation-request-id": [ - "74226b68-2ba7-429d-bd7e-3331ca941419" + "95f49f29-f3aa-4807-afb0-1b3a951ac017" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064136Z:74226b68-2ba7-429d-bd7e-3331ca941419" + "WESTUS:20230217T005555Z:95f49f29-f3aa-4807-afb0-1b3a951ac017" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,7 +258,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:41:36 GMT" + "Fri, 17 Feb 2023 00:55:54 GMT" ], "Content-Length": [ "913" @@ -267,25 +270,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX17c=\",\r\n \"name\": \"ps6700\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null,\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"krhJGKTnoPSJF5mUfxD5a2He0eYEkt7LYk/c5XMDIDM=\",\r\n \"secondaryKey\": \"kwqbIa1CbSOSwNF3+n5px9faC4ig86p75UUjG2JoICY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"zFjjKTfWilVyNp4O45/ZZ9FJaiVmJsedRw85qLyLB9o=\",\r\n \"secondaryKey\": \"wNFmVZjbefeWRi3RyE+PAXLMfCmNBvI+yS3jPASSYQI=\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"resourcegroup\": \"ps9361\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfA4c=\",\r\n \"name\": \"ps1963\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null,\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"resourcegroup\": \"ps8840\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAcX2Ao=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"krhJGKTnoPSJF5mUfxD5a2He0eYEkt7LYk/c5XMDIDM=\",\r\n \"secondaryKey\": \"kwqbIa1CbSOSwNF3+n5px9faC4ig86p75UUjG2JoICY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "724a27e9-9e45-4846-8114-9224d067f3a1" + "26bb10bf-72ca-4197-9e03-e519dc696f6c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -295,6 +297,7 @@ "566" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAAABbfBAk=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -303,22 +306,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/operationResults/b3NfaWRfMDg2YmY1YjctZmMwMC00ZTE3LWE5MTYtMGMxYzQ3YzE3OThh?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/operationResults/aWQ9b3NfaWRfOWU3YzA1NjctMGNhNS00YzgwLTgwNGYtMDQyY2MwM2I2MTZmO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4997" + "4999" ], "x-ms-request-id": [ - "7333139f-df80-4fc6-8eec-e99f578672f1" + "cfcda0be-bb72-4908-9a15-5d37a7e59bfe" ], "x-ms-correlation-request-id": [ - "7333139f-df80-4fc6-8eec-e99f578672f1" + "cfcda0be-bb72-4908-9a15-5d37a7e59bfe" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064208Z:7333139f-df80-4fc6-8eec-e99f578672f1" + "WESTCENTRALUS:20230217T005628Z:cfcda0be-bb72-4908-9a15-5d37a7e59bfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -327,7 +330,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:42:08 GMT" + "Fri, 17 Feb 2023 00:56:28 GMT" ], "Content-Length": [ "744" @@ -339,25 +342,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX2Ao=\",\r\n \"name\": \"ps6700\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null,\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"krhJGKTnoPSJF5mUfxD5a2He0eYEkt7LYk/c5XMDIDM=\",\r\n \"secondaryKey\": \"kwqbIa1CbSOSwNF3+n5px9faC4ig86p75UUjG2JoICY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n },\r\n \"resourcegroup\": \"ps9361\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfBAk=\",\r\n \"name\": \"ps1963\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null,\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n },\r\n \"resourcegroup\": \"ps8840\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAcX2Hg=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"krhJGKTnoPSJF5mUfxD5a2He0eYEkt7LYk/c5XMDIDM=\",\r\n \"secondaryKey\": \"kwqbIa1CbSOSwNF3+n5px9faC4ig86p75UUjG2JoICY=\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b30364e3-48d3-436c-83e8-8dbcfc50916f" + "09df905f-a154-4271-a64f-b2312f9aa650" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -367,6 +369,7 @@ "534" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAAABbfBD8=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -375,22 +378,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/operationResults/b3NfaWRfYWQ1MDQwMmMtYTg0Ny00OTM3LWI4YWMtYmIxMWY2MTZlM2U2?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/operationResults/aWQ9b3NfaWRfMGYxN2NhZWYtMWE2Yi00MjM4LWIyN2ItMzVlNWJjMGZlZGE1O3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4996" + "4999" ], "x-ms-request-id": [ - "32d726d2-0b88-43dc-92de-071b60704b74" + "6ab144e7-cb29-4b68-a502-f90d80f5ac86" ], "x-ms-correlation-request-id": [ - "32d726d2-0b88-43dc-92de-071b60704b74" + "6ab144e7-cb29-4b68-a502-f90d80f5ac86" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064240Z:32d726d2-0b88-43dc-92de-071b60704b74" + "WESTUS:20230217T005700Z:6ab144e7-cb29-4b68-a502-f90d80f5ac86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -399,7 +402,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:42:40 GMT" + "Fri, 17 Feb 2023 00:57:00 GMT" ], "Content-Length": [ "712" @@ -411,25 +414,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX2Hg=\",\r\n \"name\": \"ps6700\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null,\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"krhJGKTnoPSJF5mUfxD5a2He0eYEkt7LYk/c5XMDIDM=\",\r\n \"secondaryKey\": \"kwqbIa1CbSOSwNF3+n5px9faC4ig86p75UUjG2JoICY=\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"resourcegroup\": \"ps9361\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfBD8=\",\r\n \"name\": \"ps1963\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null,\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n },\r\n \"resourcegroup\": \"ps8840\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/operationResults/b3NfaWRfMmE4MDZjMmYtZjdlNC00NjVhLWJkZmUtNjgyYzdjNGVkMjZi?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwL29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNbUU0TURaak1tWXRaamRsTkMwME5qVmhMV0prWm1VdE5qZ3lZemRqTkdWa01qWmk/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/operationResults/aWQ9b3NfaWRfZjVkNzk5YTEtYTgzYS00NDZlLWE3NDktYjQ5M2FiZWMyODRmO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmWmpWa056azVZVEV0WVRnellTMDBORFpsTFdFM05Ea3RZalE1TTJGaVpXTXlPRFJtTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7dc406b-86c6-4f51-9186-8a50e4601e18" + "a29452e8-66e7-4523-b444-06cefc5f644f" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -444,13 +447,13 @@ "11999" ], "x-ms-request-id": [ - "42bdc915-0fbf-4387-9041-0e5275b2a159" + "fb81bccb-52dd-44f4-a3ee-b700f6311d33" ], "x-ms-correlation-request-id": [ - "42bdc915-0fbf-4387-9041-0e5275b2a159" + "fb81bccb-52dd-44f4-a3ee-b700f6311d33" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064134Z:42bdc915-0fbf-4387-9041-0e5275b2a159" + "WESTUS:20230217T005553Z:fb81bccb-52dd-44f4-a3ee-b700f6311d33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -459,7 +462,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:41:34 GMT" + "Fri, 17 Feb 2023 00:55:53 GMT" ], "Content-Length": [ "22" @@ -475,21 +478,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7dc406b-86c6-4f51-9186-8a50e4601e18" + "a29452e8-66e7-4523-b444-06cefc5f644f" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -504,13 +507,13 @@ "11998" ], "x-ms-request-id": [ - "f2d99148-ba56-4bb8-9bd2-d6e729e1b694" + "6424d536-6c91-45fd-b039-b19c32f52637" ], "x-ms-correlation-request-id": [ - "f2d99148-ba56-4bb8-9bd2-d6e729e1b694" + "6424d536-6c91-45fd-b039-b19c32f52637" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064134Z:f2d99148-ba56-4bb8-9bd2-d6e729e1b694" + "WESTUS:20230217T005553Z:6424d536-6c91-45fd-b039-b19c32f52637" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,7 +522,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:41:34 GMT" + "Fri, 17 Feb 2023 00:55:53 GMT" ], "Content-Length": [ "640" @@ -531,28 +534,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX17c=\",\r\n \"name\": \"ps6700\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6700.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236235\"\r\n },\r\n \"resourcegroup\": \"ps9361\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfA4c=\",\r\n \"name\": \"ps1963\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1963.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4AD\"\r\n },\r\n \"resourcegroup\": \"ps8840\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7dc406b-86c6-4f51-9186-8a50e4601e18" + "a29452e8-66e7-4523-b444-06cefc5f644f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -567,13 +570,13 @@ "11997" ], "x-ms-request-id": [ - "7e20c3a1-2172-4a42-9044-67f77ff101b8" + "4eb74eab-de2d-4223-b7a4-d5aa2088188a" ], "x-ms-correlation-request-id": [ - "7e20c3a1-2172-4a42-9044-67f77ff101b8" + "4eb74eab-de2d-4223-b7a4-d5aa2088188a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064135Z:7e20c3a1-2172-4a42-9044-67f77ff101b8" + "WESTUS:20230217T005553Z:4eb74eab-de2d-4223-b7a4-d5aa2088188a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582,7 +585,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:41:34 GMT" + "Fri, 17 Feb 2023 00:55:53 GMT" ], "Content-Length": [ "640" @@ -594,28 +597,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX17c=\",\r\n \"name\": \"ps6700\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6700.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236235\"\r\n },\r\n \"resourcegroup\": \"ps9361\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfA4c=\",\r\n \"name\": \"ps1963\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1963.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4AD\"\r\n },\r\n \"resourcegroup\": \"ps8840\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71d28c75-83c1-4377-8660-80b40e13e988" + "8f418e8f-e6ca-44c8-92d8-b6d2536ba42a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -627,16 +630,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-request-id": [ - "084c21ad-ab8f-4d63-bda4-cc2f709344dd" + "70cc3738-45a0-4664-b44e-f2a2a038324d" ], "x-ms-correlation-request-id": [ - "084c21ad-ab8f-4d63-bda4-cc2f709344dd" + "70cc3738-45a0-4664-b44e-f2a2a038324d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064135Z:084c21ad-ab8f-4d63-bda4-cc2f709344dd" + "WESTUS:20230217T005554Z:70cc3738-45a0-4664-b44e-f2a2a038324d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -645,7 +648,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:41:35 GMT" + "Fri, 17 Feb 2023 00:55:53 GMT" ], "Content-Length": [ "640" @@ -657,25 +660,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX17c=\",\r\n \"name\": \"ps6700\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6700.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236235\"\r\n },\r\n \"resourcegroup\": \"ps9361\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfA4c=\",\r\n \"name\": \"ps1963\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1963.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4AD\"\r\n },\r\n \"resourcegroup\": \"ps8840\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71d28c75-83c1-4377-8660-80b40e13e988" + "8f418e8f-e6ca-44c8-92d8-b6d2536ba42a" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -687,16 +690,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-request-id": [ - "62e83eea-629d-4cc3-9cf5-6c3e18114bba" + "d4c2ac1f-ec09-460a-8871-d29e51069be9" ], "x-ms-correlation-request-id": [ - "62e83eea-629d-4cc3-9cf5-6c3e18114bba" + "d4c2ac1f-ec09-460a-8871-d29e51069be9" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064207Z:62e83eea-629d-4cc3-9cf5-6c3e18114bba" + "WESTUS:20230217T005625Z:d4c2ac1f-ec09-460a-8871-d29e51069be9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -705,7 +708,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:42:06 GMT" + "Fri, 17 Feb 2023 00:56:25 GMT" ], "Content-Length": [ "640" @@ -717,28 +720,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX2Ao=\",\r\n \"name\": \"ps6700\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6700.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236235\"\r\n },\r\n \"resourcegroup\": \"ps9361\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfBAk=\",\r\n \"name\": \"ps1963\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1963.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4AD\"\r\n },\r\n \"resourcegroup\": \"ps8840\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "724a27e9-9e45-4846-8114-9224d067f3a1" + "26bb10bf-72ca-4197-9e03-e519dc696f6c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -750,16 +753,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-request-id": [ - "98d41958-9339-430a-a27c-986e661f8bb0" + "7d84dc51-8487-46c2-8944-fe6b9b505697" ], "x-ms-correlation-request-id": [ - "98d41958-9339-430a-a27c-986e661f8bb0" + "7d84dc51-8487-46c2-8944-fe6b9b505697" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064207Z:98d41958-9339-430a-a27c-986e661f8bb0" + "WESTCENTRALUS:20230217T005626Z:7d84dc51-8487-46c2-8944-fe6b9b505697" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,7 +771,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:42:06 GMT" + "Fri, 17 Feb 2023 00:56:25 GMT" ], "Content-Length": [ "640" @@ -780,25 +783,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX2Ao=\",\r\n \"name\": \"ps6700\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6700.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236235\"\r\n },\r\n \"resourcegroup\": \"ps9361\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfBAk=\",\r\n \"name\": \"ps1963\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1963.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4AD\"\r\n },\r\n \"resourcegroup\": \"ps8840\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "724a27e9-9e45-4846-8114-9224d067f3a1" + "26bb10bf-72ca-4197-9e03-e519dc696f6c" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -810,16 +813,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-request-id": [ - "673bbebe-5bf9-468d-9369-bde8618c6807" + "911a8465-21ac-4465-b8e6-33fd5683c5ca" ], "x-ms-correlation-request-id": [ - "673bbebe-5bf9-468d-9369-bde8618c6807" + "911a8465-21ac-4465-b8e6-33fd5683c5ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064239Z:673bbebe-5bf9-468d-9369-bde8618c6807" + "WESTCENTRALUS:20230217T005658Z:911a8465-21ac-4465-b8e6-33fd5683c5ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -828,7 +831,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:42:38 GMT" + "Fri, 17 Feb 2023 00:56:58 GMT" ], "Content-Length": [ "640" @@ -840,28 +843,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX2Hg=\",\r\n \"name\": \"ps6700\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6700.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236235\"\r\n },\r\n \"resourcegroup\": \"ps9361\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfBD8=\",\r\n \"name\": \"ps1963\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1963.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4AD\"\r\n },\r\n \"resourcegroup\": \"ps8840\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b30364e3-48d3-436c-83e8-8dbcfc50916f" + "09df905f-a154-4271-a64f-b2312f9aa650" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -873,16 +876,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-request-id": [ - "4ae8b9da-cf8d-4c7a-b6fc-474111f788f9" + "6848975f-dc73-493a-931f-c894b7e34fb5" ], "x-ms-correlation-request-id": [ - "4ae8b9da-cf8d-4c7a-b6fc-474111f788f9" + "6848975f-dc73-493a-931f-c894b7e34fb5" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064239Z:4ae8b9da-cf8d-4c7a-b6fc-474111f788f9" + "WESTUS:20230217T005659Z:6848975f-dc73-493a-931f-c894b7e34fb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -891,7 +894,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:42:39 GMT" + "Fri, 17 Feb 2023 00:56:59 GMT" ], "Content-Length": [ "640" @@ -903,25 +906,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX2Hg=\",\r\n \"name\": \"ps6700\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6700.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236235\"\r\n },\r\n \"resourcegroup\": \"ps9361\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfBD8=\",\r\n \"name\": \"ps1963\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1963.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4AD\"\r\n },\r\n \"resourcegroup\": \"ps8840\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b30364e3-48d3-436c-83e8-8dbcfc50916f" + "09df905f-a154-4271-a64f-b2312f9aa650" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -933,16 +936,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-request-id": [ - "0646f9a1-462f-45bd-aa56-9c4234ca908c" + "f4bb67fe-e21b-40a7-83f0-8bdda38b14bb" ], "x-ms-correlation-request-id": [ - "0646f9a1-462f-45bd-aa56-9c4234ca908c" + "f4bb67fe-e21b-40a7-83f0-8bdda38b14bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064311Z:0646f9a1-462f-45bd-aa56-9c4234ca908c" + "WESTUS:20230217T005730Z:f4bb67fe-e21b-40a7-83f0-8bdda38b14bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -951,7 +954,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:43:10 GMT" + "Fri, 17 Feb 2023 00:57:30 GMT" ], "Content-Length": [ "640" @@ -963,28 +966,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX2OA=\",\r\n \"name\": \"ps6700\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6700.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236235\"\r\n },\r\n \"resourcegroup\": \"ps9361\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfBKE=\",\r\n \"name\": \"ps1963\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps1963.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4AD\"\r\n },\r\n \"resourcegroup\": \"ps8840\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c1ae7f9-483c-4f63-9f70-f4f0a9e47dfc" + "cf30a187-2cdb-4646-8890-bd072b0e5806" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -999,13 +1002,13 @@ "1199" ], "x-ms-request-id": [ - "3f0dfae5-f265-4a40-be73-f578ad957020" + "bbff8d1a-c2f4-446c-8713-ec7e4c9cbbd5" ], "x-ms-correlation-request-id": [ - "3f0dfae5-f265-4a40-be73-f578ad957020" + "bbff8d1a-c2f4-446c-8713-ec7e4c9cbbd5" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064135Z:3f0dfae5-f265-4a40-be73-f578ad957020" + "WESTUS:20230217T005553Z:bbff8d1a-c2f4-446c-8713-ec7e4c9cbbd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1014,7 +1017,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:41:35 GMT" + "Fri, 17 Feb 2023 00:55:53 GMT" ], "Content-Length": [ "229" @@ -1026,28 +1029,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"krhJGKTnoPSJF5mUfxD5a2He0eYEkt7LYk/c5XMDIDM=\",\r\n \"secondaryKey\": \"kwqbIa1CbSOSwNF3+n5px9faC4ig86p75UUjG2JoICY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71d28c75-83c1-4377-8660-80b40e13e988" + "8f418e8f-e6ca-44c8-92d8-b6d2536ba42a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1059,16 +1062,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "a6eae5ae-954f-4106-b718-39a6e2a9827f" + "261ae893-4453-4859-9435-49f0e8457e19" ], "x-ms-correlation-request-id": [ - "a6eae5ae-954f-4106-b718-39a6e2a9827f" + "261ae893-4453-4859-9435-49f0e8457e19" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064135Z:a6eae5ae-954f-4106-b718-39a6e2a9827f" + "WESTUS:20230217T005554Z:261ae893-4453-4859-9435-49f0e8457e19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1077,7 +1080,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:41:35 GMT" + "Fri, 17 Feb 2023 00:55:53 GMT" ], "Content-Length": [ "229" @@ -1089,28 +1092,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"krhJGKTnoPSJF5mUfxD5a2He0eYEkt7LYk/c5XMDIDM=\",\r\n \"secondaryKey\": \"kwqbIa1CbSOSwNF3+n5px9faC4ig86p75UUjG2JoICY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71d28c75-83c1-4377-8660-80b40e13e988" + "8f418e8f-e6ca-44c8-92d8-b6d2536ba42a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1122,16 +1125,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "9cafb09b-b849-4c83-a0b1-c22454d7891c" + "c61646dc-0daf-4a97-a216-0539835cb415" ], "x-ms-correlation-request-id": [ - "9cafb09b-b849-4c83-a0b1-c22454d7891c" + "c61646dc-0daf-4a97-a216-0539835cb415" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064207Z:9cafb09b-b849-4c83-a0b1-c22454d7891c" + "WESTUS:20230217T005625Z:c61646dc-0daf-4a97-a216-0539835cb415" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1140,7 +1143,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:42:06 GMT" + "Fri, 17 Feb 2023 00:56:25 GMT" ], "Content-Length": [ "398" @@ -1152,28 +1155,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"krhJGKTnoPSJF5mUfxD5a2He0eYEkt7LYk/c5XMDIDM=\",\r\n \"secondaryKey\": \"kwqbIa1CbSOSwNF3+n5px9faC4ig86p75UUjG2JoICY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"zFjjKTfWilVyNp4O45/ZZ9FJaiVmJsedRw85qLyLB9o=\",\r\n \"secondaryKey\": \"wNFmVZjbefeWRi3RyE+PAXLMfCmNBvI+yS3jPASSYQI=\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "724a27e9-9e45-4846-8114-9224d067f3a1" + "26bb10bf-72ca-4197-9e03-e519dc696f6c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1185,16 +1188,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "3005eaac-5eae-47b6-97f7-6fcd727d63a1" + "6729815a-3711-4fa8-b7ab-297137e5ab6a" ], "x-ms-correlation-request-id": [ - "3005eaac-5eae-47b6-97f7-6fcd727d63a1" + "6729815a-3711-4fa8-b7ab-297137e5ab6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064207Z:3005eaac-5eae-47b6-97f7-6fcd727d63a1" + "WESTCENTRALUS:20230217T005626Z:6729815a-3711-4fa8-b7ab-297137e5ab6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1203,7 +1206,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:42:06 GMT" + "Fri, 17 Feb 2023 00:56:26 GMT" ], "Content-Length": [ "398" @@ -1215,28 +1218,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"krhJGKTnoPSJF5mUfxD5a2He0eYEkt7LYk/c5XMDIDM=\",\r\n \"secondaryKey\": \"kwqbIa1CbSOSwNF3+n5px9faC4ig86p75UUjG2JoICY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"zFjjKTfWilVyNp4O45/ZZ9FJaiVmJsedRw85qLyLB9o=\",\r\n \"secondaryKey\": \"wNFmVZjbefeWRi3RyE+PAXLMfCmNBvI+yS3jPASSYQI=\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b30364e3-48d3-436c-83e8-8dbcfc50916f" + "09df905f-a154-4271-a64f-b2312f9aa650" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1248,16 +1251,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "a2e88d37-2e96-42d1-8558-0936c9104036" + "9a436740-d8a5-434a-b6c1-8a1b69b55527" ], "x-ms-correlation-request-id": [ - "a2e88d37-2e96-42d1-8558-0936c9104036" + "9a436740-d8a5-434a-b6c1-8a1b69b55527" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064239Z:a2e88d37-2e96-42d1-8558-0936c9104036" + "WESTUS:20230217T005659Z:9a436740-d8a5-434a-b6c1-8a1b69b55527" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1266,7 +1269,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:42:39 GMT" + "Fri, 17 Feb 2023 00:56:59 GMT" ], "Content-Length": [ "229" @@ -1278,25 +1281,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"krhJGKTnoPSJF5mUfxD5a2He0eYEkt7LYk/c5XMDIDM=\",\r\n \"secondaryKey\": \"kwqbIa1CbSOSwNF3+n5px9faC4ig86p75UUjG2JoICY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/operationResults/b3NfaWRfNmJhNjgwZDgtNzMyYS00MWJjLWI5MDQtN2VkMThhYTE5MDhi?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwL29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZObUpoTmpnd1pEZ3ROek15WVMwME1XSmpMV0k1TURRdE4yVmtNVGhoWVRFNU1EaGk/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/operationResults/aWQ9b3NfaWRfMDc2Zjk5OGItZmE0MC00MThkLThjMzMtN2M3MzlmYWJiMjdlO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmTURjMlpqazVPR0l0Wm1FME1DMDBNVGhrTFRoak16TXROMk0zTXpsbVlXSmlNamRsTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71d28c75-83c1-4377-8660-80b40e13e988" + "8f418e8f-e6ca-44c8-92d8-b6d2536ba42a" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1308,16 +1311,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-request-id": [ - "70845344-e49b-46f2-bb4e-7e5bcdf92d7b" + "9b2e6fc4-af92-4426-a391-ce0be3f25af6" ], "x-ms-correlation-request-id": [ - "70845344-e49b-46f2-bb4e-7e5bcdf92d7b" + "9b2e6fc4-af92-4426-a391-ce0be3f25af6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064207Z:70845344-e49b-46f2-bb4e-7e5bcdf92d7b" + "WESTUS:20230217T005625Z:9b2e6fc4-af92-4426-a391-ce0be3f25af6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1326,7 +1329,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:42:06 GMT" + "Fri, 17 Feb 2023 00:56:25 GMT" ], "Content-Length": [ "22" @@ -1342,24 +1345,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/keys/Access1/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwL2tleXMvQWNjZXNzMS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE3LTExLTE1", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/keys/Access1/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzL2tleXMvQWNjZXNzMS9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDE3LTExLTE1", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "724a27e9-9e45-4846-8114-9224d067f3a1" + "26bb10bf-72ca-4197-9e03-e519dc696f6c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1371,16 +1374,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-request-id": [ - "c0d4bbe4-43c3-4322-a3e5-0b442cb16c83" + "4905634a-fde2-4f67-8799-22694ddeaa15" ], "x-ms-correlation-request-id": [ - "c0d4bbe4-43c3-4322-a3e5-0b442cb16c83" + "4905634a-fde2-4f67-8799-22694ddeaa15" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064207Z:c0d4bbe4-43c3-4322-a3e5-0b442cb16c83" + "WESTCENTRALUS:20230217T005627Z:4905634a-fde2-4f67-8799-22694ddeaa15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,7 +1392,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:42:06 GMT" + "Fri, 17 Feb 2023 00:56:26 GMT" ], "Content-Length": [ "168" @@ -1401,25 +1404,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"zFjjKTfWilVyNp4O45/ZZ9FJaiVmJsedRw85qLyLB9o=\",\r\n \"secondaryKey\": \"wNFmVZjbefeWRi3RyE+PAXLMfCmNBvI+yS3jPASSYQI=\",\r\n \"rights\": \"ServiceConfig\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"Access1\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/operationResults/b3NfaWRfMDg2YmY1YjctZmMwMC00ZTE3LWE5MTYtMGMxYzQ3YzE3OThh?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwL29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNRGcyWW1ZMVlqY3RabU13TUMwMFpURTNMV0U1TVRZdE1HTXhZelEzWXpFM09UaGg/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/operationResults/aWQ9b3NfaWRfOWU3YzA1NjctMGNhNS00YzgwLTgwNGYtMDQyY2MwM2I2MTZmO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmT1dVM1l6QTFOamN0TUdOaE5TMDBZemd3TFRnd05HWXRNRFF5WTJNd00ySTJNVFptTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "724a27e9-9e45-4846-8114-9224d067f3a1" + "26bb10bf-72ca-4197-9e03-e519dc696f6c" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1431,16 +1434,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-request-id": [ - "b07169f1-e73d-4637-b17b-f2d8600abaed" + "dd8412e2-f85e-4c2f-9c01-9ff5e72feaf6" ], "x-ms-correlation-request-id": [ - "b07169f1-e73d-4637-b17b-f2d8600abaed" + "dd8412e2-f85e-4c2f-9c01-9ff5e72feaf6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064239Z:b07169f1-e73d-4637-b17b-f2d8600abaed" + "WESTCENTRALUS:20230217T005658Z:dd8412e2-f85e-4c2f-9c01-9ff5e72feaf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1449,7 +1452,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:42:38 GMT" + "Fri, 17 Feb 2023 00:56:58 GMT" ], "Content-Length": [ "22" @@ -1465,24 +1468,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/keys/provisioningserviceowner/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwL2tleXMvcHJvdmlzaW9uaW5nc2VydmljZW93bmVyL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/keys/provisioningserviceowner/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzL2tleXMvcHJvdmlzaW9uaW5nc2VydmljZW93bmVyL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b30364e3-48d3-436c-83e8-8dbcfc50916f" + "09df905f-a154-4271-a64f-b2312f9aa650" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1494,16 +1497,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-request-id": [ - "d2c3a472-fd30-4e6a-b986-b4314334dc1a" + "e8578bbe-329a-4b9f-b809-e781407b8200" ], "x-ms-correlation-request-id": [ - "d2c3a472-fd30-4e6a-b986-b4314334dc1a" + "e8578bbe-329a-4b9f-b809-e781407b8200" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064239Z:d2c3a472-fd30-4e6a-b986-b4314334dc1a" + "WESTUS:20230217T005659Z:e8578bbe-329a-4b9f-b809-e781407b8200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1512,7 +1515,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:42:39 GMT" + "Fri, 17 Feb 2023 00:56:59 GMT" ], "Content-Length": [ "217" @@ -1524,28 +1527,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"krhJGKTnoPSJF5mUfxD5a2He0eYEkt7LYk/c5XMDIDM=\",\r\n \"secondaryKey\": \"kwqbIa1CbSOSwNF3+n5px9faC4ig86p75UUjG2JoICY=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/keys/provisioningserviceowner/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwL2tleXMvcHJvdmlzaW9uaW5nc2VydmljZW93bmVyL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/keys/provisioningserviceowner/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzL2tleXMvcHJvdmlzaW9uaW5nc2VydmljZW93bmVyL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b30364e3-48d3-436c-83e8-8dbcfc50916f" + "09df905f-a154-4271-a64f-b2312f9aa650" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1557,16 +1560,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-request-id": [ - "a1f294f8-0f31-4b99-988d-3376c08e1a04" + "860c02c5-3dae-4222-a775-1f28a0e9bfc5" ], "x-ms-correlation-request-id": [ - "a1f294f8-0f31-4b99-988d-3376c08e1a04" + "860c02c5-3dae-4222-a775-1f28a0e9bfc5" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064311Z:a1f294f8-0f31-4b99-988d-3376c08e1a04" + "WESTUS:20230217T005730Z:860c02c5-3dae-4222-a775-1f28a0e9bfc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1575,7 +1578,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:43:10 GMT" + "Fri, 17 Feb 2023 00:57:30 GMT" ], "Content-Length": [ "185" @@ -1587,25 +1590,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"krhJGKTnoPSJF5mUfxD5a2He0eYEkt7LYk/c5XMDIDM=\",\r\n \"secondaryKey\": \"kwqbIa1CbSOSwNF3+n5px9faC4ig86p75UUjG2JoICY=\",\r\n \"rights\": \"ServiceConfig\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/operationResults/b3NfaWRfYWQ1MDQwMmMtYTg0Ny00OTM3LWI4YWMtYmIxMWY2MTZlM2U2?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwL29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZZV1ExTURRd01tTXRZVGcwTnkwME9UTTNMV0k0WVdNdFltSXhNV1kyTVRabE0yVTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/operationResults/aWQ9b3NfaWRfMGYxN2NhZWYtMWE2Yi00MjM4LWIyN2ItMzVlNWJjMGZlZGE1O3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmTUdZeE4yTmhaV1l0TVdFMllpMDBNak00TFdJeU4ySXRNelZsTldKak1HWmxaR0UxTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b30364e3-48d3-436c-83e8-8dbcfc50916f" + "09df905f-a154-4271-a64f-b2312f9aa650" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1617,16 +1620,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-request-id": [ - "c82a9aac-8634-40dc-96a5-e12bae29af80" + "d1eee8a5-4e51-4265-af4a-ebf795d931c4" ], "x-ms-correlation-request-id": [ - "c82a9aac-8634-40dc-96a5-e12bae29af80" + "d1eee8a5-4e51-4265-af4a-ebf795d931c4" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064310Z:c82a9aac-8634-40dc-96a5-e12bae29af80" + "WESTUS:20230217T005730Z:d1eee8a5-4e51-4265-af4a-ebf795d931c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1635,7 +1638,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:43:10 GMT" + "Fri, 17 Feb 2023 00:57:30 GMT" ], "Content-Length": [ "22" @@ -1651,24 +1654,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83f85ab5-45ee-406b-948d-37599b23c10e" + "f833736e-e758-434b-a40f-e8f0755411c8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1677,13 +1680,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/operationResults/b3NfaWRfOGE0YjI0OWMtZmU2Mi00YmRkLWJhMzUtYTIxMmViOGNjMzdh?api-version=2017-11-15" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/operationResults/aWQ9b3NfaWRfOTIzYjlmZDgtZTZmNS00ZTlkLWIxZDQtMDAyZTE2YjRhYThiO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/operationResults/b3NfaWRfOGE0YjI0OWMtZmU2Mi00YmRkLWJhMzUtYTIxMmViOGNjMzdh?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/operationResults/aWQ9b3NfaWRfOTIzYjlmZDgtZTZmNS00ZTlkLWIxZDQtMDAyZTE2YjRhYThiO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1692,13 +1695,13 @@ "14999" ], "x-ms-request-id": [ - "beb6d103-56c1-4a96-be04-3838d5291754" + "24fd9adc-33ba-4e53-803a-f2b7d1e3a4fb" ], "x-ms-correlation-request-id": [ - "beb6d103-56c1-4a96-be04-3838d5291754" + "24fd9adc-33ba-4e53-803a-f2b7d1e3a4fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064311Z:beb6d103-56c1-4a96-be04-3838d5291754" + "WESTCENTRALUS:20230217T005731Z:24fd9adc-33ba-4e53-803a-f2b7d1e3a4fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1707,7 +1710,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:43:11 GMT" + "Fri, 17 Feb 2023 00:57:31 GMT" ], "Content-Length": [ "4" @@ -1723,21 +1726,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/operationResults/b3NfaWRfOGE0YjI0OWMtZmU2Mi00YmRkLWJhMzUtYTIxMmViOGNjMzdh?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwL29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZPR0UwWWpJME9XTXRabVUyTWkwMFltUmtMV0poTXpVdFlUSXhNbVZpT0dOak16ZGg/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/operationResults/aWQ9b3NfaWRfOTIzYjlmZDgtZTZmNS00ZTlkLWIxZDQtMDAyZTE2YjRhYThiO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmT1RJellqbG1aRGd0WlRabU5TMDBaVGxrTFdJeFpEUXRNREF5WlRFMllqUmhZVGhpTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83f85ab5-45ee-406b-948d-37599b23c10e" + "f833736e-e758-434b-a40f-e8f0755411c8" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1749,16 +1752,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-request-id": [ - "794c9446-4b6e-4f30-b974-4b776199ccec" + "37be94dd-9e75-4fb0-abef-cc736641db79" ], "x-ms-correlation-request-id": [ - "794c9446-4b6e-4f30-b974-4b776199ccec" + "37be94dd-9e75-4fb0-abef-cc736641db79" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064327Z:794c9446-4b6e-4f30-b974-4b776199ccec" + "WESTCENTRALUS:20230217T005746Z:37be94dd-9e75-4fb0-abef-cc736641db79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1767,7 +1770,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:43:27 GMT" + "Fri, 17 Feb 2023 00:57:46 GMT" ], "Content-Length": [ "22" @@ -1783,21 +1786,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/operationResults/b3NfaWRfOGE0YjI0OWMtZmU2Mi00YmRkLWJhMzUtYTIxMmViOGNjMzdh?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM2NzAwL29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZPR0UwWWpJME9XTXRabVUyTWkwMFltUmtMV0poTXpVdFlUSXhNbVZpT0dOak16ZGg/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/operationResults/aWQ9b3NfaWRfOTIzYjlmZDgtZTZmNS00ZTlkLWIxZDQtMDAyZTE2YjRhYThiO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODg0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMxOTYzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmT1RJellqbG1aRGd0WlRabU5TMDBaVGxrTFdJeFpEUXRNREF5WlRFMllqUmhZVGhpTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83f85ab5-45ee-406b-948d-37599b23c10e" + "f833736e-e758-434b-a40f-e8f0755411c8" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1806,7 +1809,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9361/providers/Microsoft.Devices/provisioningServices/ps6700/operationResults/b3NfaWRfOGE0YjI0OWMtZmU2Mi00YmRkLWJhMzUtYTIxMmViOGNjMzdh/operationResults/b3NfaWRfOGE0YjI0OWMtZmU2Mi00YmRkLWJhMzUtYTIxMmViOGNjMzdh?api-version=2017-11-15" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8840/providers/Microsoft.Devices/provisioningServices/ps1963/operationResults/aWQ9b3NfaWRfOTIzYjlmZDgtZTZmNS00ZTlkLWIxZDQtMDAyZTE2YjRhYThiO3JlZ2lvbj13ZXN0dXM%3D/operationResults/b3NfaWRfOTIzYjlmZDgtZTZmNS00ZTlkLWIxZDQtMDAyZTE2YjRhYThi?api-version=2017-11-15" ], "Retry-After": [ "15" @@ -1815,16 +1818,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-request-id": [ - "e8c72610-972c-423e-a8ac-9671dc4478a5" + "8c9c7fba-7bf1-497c-9b90-313450a54e31" ], "x-ms-correlation-request-id": [ - "e8c72610-972c-423e-a8ac-9671dc4478a5" + "8c9c7fba-7bf1-497c-9b90-313450a54e31" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064327Z:e8c72610-972c-423e-a8ac-9671dc4478a5" + "WESTCENTRALUS:20230217T005747Z:8c9c7fba-7bf1-497c-9b90-313450a54e31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1833,7 +1836,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:43:27 GMT" + "Fri, 17 Feb 2023 00:57:46 GMT" ], "Expires": [ "-1" @@ -1846,24 +1849,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps9361?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzOTM2MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps8840?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzODg0MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9045257f-6bf4-40ae-a03b-8176336f7297" + "752ff14a-0473-4eae-9c94-f4682262b099" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1872,7 +1875,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1881,13 +1884,13 @@ "14999" ], "x-ms-request-id": [ - "ff0c7014-cc75-47de-8448-6a48a03d19bf" + "2ab21398-6f57-4830-b180-badd675ec908" ], "x-ms-correlation-request-id": [ - "ff0c7014-cc75-47de-8448-6a48a03d19bf" + "2ab21398-6f57-4830-b180-badd675ec908" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064328Z:ff0c7014-cc75-47de-8448-6a48a03d19bf" + "WESTUS:20230217T005747Z:2ab21398-6f57-4830-b180-badd675ec908" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1896,7 +1899,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:43:27 GMT" + "Fri, 17 Feb 2023 00:57:47 GMT" ], "Expires": [ "-1" @@ -1909,75 +1912,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek5qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5EQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "6b03ccfb-1f76-4f76-934f-bda011c92bf5" - ], - "x-ms-correlation-request-id": [ - "6b03ccfb-1f76-4f76-934f-bda011c92bf5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T064343Z:6b03ccfb-1f76-4f76-934f-bda011c92bf5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:43:42 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek5qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1985,23 +1931,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "80aed985-b6b3-4277-9411-bb9ccd560a79" + "13246447-8f61-45ca-b7b5-0f5e7ab03a1a" ], "x-ms-correlation-request-id": [ - "80aed985-b6b3-4277-9411-bb9ccd560a79" + "13246447-8f61-45ca-b7b5-0f5e7ab03a1a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064358Z:80aed985-b6b3-4277-9411-bb9ccd560a79" + "WESTUS:20230217T005802Z:13246447-8f61-45ca-b7b5-0f5e7ab03a1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2010,58 +1950,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:43:57 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek5qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "773688af-a8a9-433c-b79d-31fd46ef9586" - ], - "x-ms-correlation-request-id": [ - "773688af-a8a9-433c-b79d-31fd46ef9586" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T064413Z:773688af-a8a9-433c-b79d-31fd46ef9586" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:44:13 GMT" + "Fri, 17 Feb 2023 00:58:02 GMT" ], "Expires": [ "-1" @@ -2074,18 +1963,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprek5qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5EQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2094,16 +1983,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-request-id": [ - "a2c5d801-0054-4d30-9298-c96ce495dd01" + "a7eaf16c-7236-4725-a4bc-8b0518be1ace" ], "x-ms-correlation-request-id": [ - "a2c5d801-0054-4d30-9298-c96ce495dd01" + "a7eaf16c-7236-4725-a4bc-8b0518be1ace" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064413Z:a2c5d801-0054-4d30-9298-c96ce495dd01" + "WESTUS:20230217T005802Z:a7eaf16c-7236-4725-a4bc-8b0518be1ace" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2112,7 +2001,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:44:13 GMT" + "Fri, 17 Feb 2023 00:58:02 GMT" ], "Expires": [ "-1" @@ -2127,8 +2016,8 @@ ], "Names": { "Test-AzureIotDpsAccessPolicyLifeCycle": [ - "ps6700", - "ps9361" + "ps1963", + "ps8840" ] }, "Variables": { diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentGroupTests/IotDpsEnrollmentGroupLifeCycle.json b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentGroupTests/IotDpsEnrollmentGroupLifeCycle.json index 1b28bae80f7a..cb3db1e437d7 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentGroupTests/IotDpsEnrollmentGroupLifeCycle.json +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentGroupTests/IotDpsEnrollmentGroupLifeCycle.json @@ -4,21 +4,21 @@ "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ec19839-13e6-4cac-8b77-a1fd972d9314" + "980d3482-19d9-4b28-852b-dc5b6518f891" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "a19a5aa9-a17c-4b86-aeff-3689ef09c7e8" + "618c69ae-36d5-4461-8677-b41e2f56e711" ], "x-ms-correlation-request-id": [ - "a19a5aa9-a17c-4b86-aeff-3689ef09c7e8" + "618c69ae-36d5-4461-8677-b41e2f56e711" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T060858Z:a19a5aa9-a17c-4b86-aeff-3689ef09c7e8" + "WESTCENTRALUS:20230217T011307Z:618c69ae-36d5-4461-8677-b41e2f56e711" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:08:57 GMT" + "Fri, 17 Feb 2023 01:13:06 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,28 @@ "-1" ], "Content-Length": [ - "5586" + "9626" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\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 \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\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 \"2018-12-01-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 ],\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/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"roleDefinitionId\": \"d04fc6c0-fc10-4ab8-b7de-c979247c3b65\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"provisioningServiceOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-09-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations/provisioningServiceOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway EAST\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\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\": \"IotHubs/failover\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"Australia Central\"\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps3863?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzMzg2Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps5934?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzNTkzND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "246b05fb-3e87-4cda-a592-ee451556c078" + "5171565c-4816-40a5-8159-22454232b024" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -85,6 +84,7 @@ "29" ] }, + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "2970125c-8ae5-47ab-bb77-8fe6ec54b5f3" + "68bc2a5a-1402-4f7a-bae0-f955658f4a9a" ], "x-ms-correlation-request-id": [ - "2970125c-8ae5-47ab-bb77-8fe6ec54b5f3" + "68bc2a5a-1402-4f7a-bae0-f955658f4a9a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T060859Z:2970125c-8ae5-47ab-bb77-8fe6ec54b5f3" + "WESTCENTRALUS:20230217T011308Z:68bc2a5a-1402-4f7a-bae0-f955658f4a9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:08:58 GMT" + "Fri, 17 Feb 2023 01:13:07 GMT" ], "Content-Length": [ "165" @@ -123,25 +123,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863\",\r\n \"name\": \"ps3863\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934\",\r\n \"name\": \"ps5934\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "80525cba-74e5-4fef-9cbc-58fc37ea860a" + "0f4af2af-1b44-4123-8613-fa5abf75231f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -151,6 +150,7 @@ "86" ] }, + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/operationResults/b3NfaWRfMmYzZWU4N2UtY2RiOS00MWU2LTkyNjAtMjdmMTJiZWU3YjIy?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/operationResults/aWQ9b3NfaWRfOGRhYjlhZTEtMzE4NC00NTEzLTkxNDctZGU2MmQxYTAwOWRmO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "0bb8f794-a982-41dc-b934-19f5036b8c49" + "c1e84513-e6a8-4a29-b61f-d5a19d031a14" ], "x-ms-correlation-request-id": [ - "0bb8f794-a982-41dc-b934-19f5036b8c49" + "c1e84513-e6a8-4a29-b61f-d5a19d031a14" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T060902Z:0bb8f794-a982-41dc-b934-19f5036b8c49" + "WESTCENTRALUS:20230217T011310Z:c1e84513-e6a8-4a29-b61f-d5a19d031a14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,7 +183,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:09:02 GMT" + "Fri, 17 Feb 2023 01:13:10 GMT" ], "Content-Length": [ "462" @@ -195,25 +195,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAcXu0A=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=T8iTDXuDnQHXIKClRYAJ8DZAdwIecaZAcWDadxHdpg0=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "74bddd3b-7215-4926-9e26-2b44032a56f7" + "b63f025e-28a9-4cf1-814c-3c691de59648" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -223,6 +222,7 @@ "503" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAAABbfERo=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -231,7 +231,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/operationResults/b3NfaWRfNzBhYTM1OGMtYjcwNi00YTM3LWFjYjItMTQ3Y2M2NDZkYWIz?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/operationResults/aWQ9b3NfaWRfMjliOWUyYjYtZjA4NC00NTYwLTg2NzItNDVjYmM3ZWM4NjZjO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,13 +240,13 @@ "4999" ], "x-ms-request-id": [ - "db8b4c16-88aa-49c1-bd08-dc8b7a6db314" + "5dc1cbc8-7d30-4b60-b065-dd5ebd1525b3" ], "x-ms-correlation-request-id": [ - "db8b4c16-88aa-49c1-bd08-dc8b7a6db314" + "5dc1cbc8-7d30-4b60-b065-dd5ebd1525b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061250Z:db8b4c16-88aa-49c1-bd08-dc8b7a6db314" + "WESTCENTRALUS:20230217T011624Z:5dc1cbc8-7d30-4b60-b065-dd5ebd1525b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,7 +255,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:12:49 GMT" + "Fri, 17 Feb 2023 01:16:24 GMT" ], "Content-Length": [ "733" @@ -267,25 +267,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXu0A=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=T8iTDXuDnQHXIKClRYAJ8DZAdwIecaZAcWDadxHdpg0=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfERo=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "676f1aa6-6bff-47cc-91e9-848984ebb367" + "04c4654c-a2a2-401a-958c-3eb426d6dc6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -295,6 +294,7 @@ "249" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -303,22 +303,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/operationResults/b3NfaWRfNjIxYWYzMWYtOGNmZC00Y2E4LWFhZDktMTE1YjBkMTM5ZmNi?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/operationResults/aWQ9b3NfaWRfZGRjOWNjMTQtZTA3Yy00ZDgxLWEwYTQtOTQyZmFjNmI4Mjg2O3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4998" + "4999" ], "x-ms-request-id": [ - "e750d67a-158d-4ed2-8400-d4396f0073ad" + "27b059d2-38e9-4230-889c-ddfe7cc24c35" ], "x-ms-correlation-request-id": [ - "e750d67a-158d-4ed2-8400-d4396f0073ad" + "27b059d2-38e9-4230-889c-ddfe7cc24c35" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061331Z:e750d67a-158d-4ed2-8400-d4396f0073ad" + "WESTUS:20230217T011710Z:27b059d2-38e9-4230-889c-ddfe7cc24c35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -327,7 +327,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:31 GMT" + "Fri, 17 Feb 2023 01:17:09 GMT" ], "Content-Length": [ "500" @@ -339,25 +339,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/operationResults/b3NfaWRfMmYzZWU4N2UtY2RiOS00MWU2LTkyNjAtMjdmMTJiZWU3YjIy?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNbVl6WldVNE4yVXRZMlJpT1MwME1XVTJMVGt5TmpBdE1qZG1NVEppWldVM1lqSXk/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/operationResults/aWQ9b3NfaWRfOGRhYjlhZTEtMzE4NC00NTEzLTkxNDctZGU2MmQxYTAwOWRmO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmT0dSaFlqbGhaVEV0TXpFNE5DMDBOVEV6TFRreE5EY3RaR1UyTW1ReFlUQXdPV1JtTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80525cba-74e5-4fef-9cbc-58fc37ea860a" + "0f4af2af-1b44-4123-8613-fa5abf75231f" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -369,16 +369,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-request-id": [ - "5a2df619-9b2b-417f-8a2c-5fde4c0e3b56" + "10901a77-6645-4515-8065-332190a1543c" ], "x-ms-correlation-request-id": [ - "5a2df619-9b2b-417f-8a2c-5fde4c0e3b56" + "10901a77-6645-4515-8065-332190a1543c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T060932Z:5a2df619-9b2b-417f-8a2c-5fde4c0e3b56" + "WESTCENTRALUS:20230217T011340Z:10901a77-6645-4515-8065-332190a1543c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -387,7 +387,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:09:31 GMT" + "Fri, 17 Feb 2023 01:13:39 GMT" ], "Content-Length": [ "22" @@ -403,21 +403,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80525cba-74e5-4fef-9cbc-58fc37ea860a" + "0f4af2af-1b44-4123-8613-fa5abf75231f" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -429,16 +429,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-request-id": [ - "e20131e6-c703-4f3b-82b5-9fb11d14b879" + "5e2ab570-a603-4540-aac7-6aed6424ee7d" ], "x-ms-correlation-request-id": [ - "e20131e6-c703-4f3b-82b5-9fb11d14b879" + "5e2ab570-a603-4540-aac7-6aed6424ee7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T060932Z:e20131e6-c703-4f3b-82b5-9fb11d14b879" + "WESTCENTRALUS:20230217T011340Z:5e2ab570-a603-4540-aac7-6aed6424ee7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -447,7 +447,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:09:32 GMT" + "Fri, 17 Feb 2023 01:13:40 GMT" ], "Content-Length": [ "640" @@ -459,28 +459,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXu0A=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfERo=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80525cba-74e5-4fef-9cbc-58fc37ea860a" + "0f4af2af-1b44-4123-8613-fa5abf75231f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -492,16 +492,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-request-id": [ - "f4c6f2dd-398d-4463-a1e6-175a8d06a20a" + "6a0ceb13-6f2e-4d78-8e02-18131281cab6" ], "x-ms-correlation-request-id": [ - "f4c6f2dd-398d-4463-a1e6-175a8d06a20a" + "6a0ceb13-6f2e-4d78-8e02-18131281cab6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T060932Z:f4c6f2dd-398d-4463-a1e6-175a8d06a20a" + "WESTCENTRALUS:20230217T011341Z:6a0ceb13-6f2e-4d78-8e02-18131281cab6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,7 +510,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:09:32 GMT" + "Fri, 17 Feb 2023 01:13:40 GMT" ], "Content-Length": [ "640" @@ -522,28 +522,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXu0A=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfERo=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74bddd3b-7215-4926-9e26-2b44032a56f7" + "b63f025e-28a9-4cf1-814c-3c691de59648" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -555,16 +555,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11992" ], "x-ms-request-id": [ - "14cb6dae-4bd5-4b6f-9eae-c6a1b193ab0a" + "ffa7a4dc-4d75-440c-b1ba-8d7806b18046" ], "x-ms-correlation-request-id": [ - "14cb6dae-4bd5-4b6f-9eae-c6a1b193ab0a" + "ffa7a4dc-4d75-440c-b1ba-8d7806b18046" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061249Z:14cb6dae-4bd5-4b6f-9eae-c6a1b193ab0a" + "WESTCENTRALUS:20230217T011623Z:ffa7a4dc-4d75-440c-b1ba-8d7806b18046" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -573,7 +573,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:12:48 GMT" + "Fri, 17 Feb 2023 01:16:23 GMT" ], "Content-Length": [ "640" @@ -585,25 +585,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXu0A=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfERo=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74bddd3b-7215-4926-9e26-2b44032a56f7" + "b63f025e-28a9-4cf1-814c-3c691de59648" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -615,16 +615,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11990" ], "x-ms-request-id": [ - "92464cc5-d21e-4bc0-ae71-f1fa9c6c2f4f" + "b2cfa8f5-abde-42ce-a3d7-308974ec9acd" ], "x-ms-correlation-request-id": [ - "92464cc5-d21e-4bc0-ae71-f1fa9c6c2f4f" + "b2cfa8f5-abde-42ce-a3d7-308974ec9acd" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061320Z:92464cc5-d21e-4bc0-ae71-f1fa9c6c2f4f" + "WESTCENTRALUS:20230217T011655Z:b2cfa8f5-abde-42ce-a3d7-308974ec9acd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,7 +633,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:20 GMT" + "Fri, 17 Feb 2023 01:16:54 GMT" ], "Content-Length": [ "833" @@ -645,28 +645,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74bddd3b-7215-4926-9e26-2b44032a56f7" + "b63f025e-28a9-4cf1-814c-3c691de59648" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -678,16 +678,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11989" ], "x-ms-request-id": [ - "851ba65d-aa42-47b5-8f3f-ea546c9df513" + "306695ff-162d-47a0-9fff-aee0eda96497" ], "x-ms-correlation-request-id": [ - "851ba65d-aa42-47b5-8f3f-ea546c9df513" + "306695ff-162d-47a0-9fff-aee0eda96497" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061320Z:851ba65d-aa42-47b5-8f3f-ea546c9df513" + "WESTCENTRALUS:20230217T011655Z:306695ff-162d-47a0-9fff-aee0eda96497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -696,7 +696,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:20 GMT" + "Fri, 17 Feb 2023 01:16:55 GMT" ], "Content-Length": [ "833" @@ -708,28 +708,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f8510e9-59ea-4c81-9690-5f6bb1153c1f" + "5f262808-2522-4991-8d0d-ea7f124797a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -741,16 +741,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "ec3e62c6-c989-4f41-bacd-184d82f1a6ed" + "b1a778d3-543e-480c-8bb2-7da4083fde13" ], "x-ms-correlation-request-id": [ - "ec3e62c6-c989-4f41-bacd-184d82f1a6ed" + "b1a778d3-543e-480c-8bb2-7da4083fde13" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061321Z:ec3e62c6-c989-4f41-bacd-184d82f1a6ed" + "WESTUS:20230217T011655Z:b1a778d3-543e-480c-8bb2-7da4083fde13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -759,7 +759,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:20 GMT" + "Fri, 17 Feb 2023 01:16:55 GMT" ], "Content-Length": [ "833" @@ -771,28 +771,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ae008ca-1792-4b3b-b268-709c87cdf1b0" + "b0aab463-3f30-4ca8-89a9-186c05d2e88b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -804,16 +804,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-request-id": [ - "d99df535-4811-4f0f-8ec3-ca65ecbfe823" + "0ed4955b-1a58-4ca0-876f-5e172a1eb8e1" ], "x-ms-correlation-request-id": [ - "d99df535-4811-4f0f-8ec3-ca65ecbfe823" + "0ed4955b-1a58-4ca0-876f-5e172a1eb8e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061321Z:d99df535-4811-4f0f-8ec3-ca65ecbfe823" + "WESTUS:20230217T011656Z:0ed4955b-1a58-4ca0-876f-5e172a1eb8e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -822,7 +822,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:21 GMT" + "Fri, 17 Feb 2023 01:16:55 GMT" ], "Content-Length": [ "833" @@ -834,28 +834,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc68c77-c5d2-4e2d-ab2b-6e15e4006ab7" + "c04bcec4-1a9b-4d6e-bf61-b283fec642bb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -867,16 +867,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-request-id": [ - "022c0e06-5176-4dfc-9b7e-44d8a68ce529" + "1ba3227d-0686-4ca2-b3bb-e3ffe9caa9f5" ], "x-ms-correlation-request-id": [ - "022c0e06-5176-4dfc-9b7e-44d8a68ce529" + "1ba3227d-0686-4ca2-b3bb-e3ffe9caa9f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061321Z:022c0e06-5176-4dfc-9b7e-44d8a68ce529" + "WESTUS:20230217T011656Z:1ba3227d-0686-4ca2-b3bb-e3ffe9caa9f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,7 +885,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:21 GMT" + "Fri, 17 Feb 2023 01:16:56 GMT" ], "Content-Length": [ "833" @@ -897,28 +897,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1757565-43c2-470a-b7a9-25a218fe1099" + "167c4376-7ad5-471a-8f01-42ad2c245937" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -930,16 +930,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-request-id": [ - "d72b71f4-96e3-4a18-b19c-9d56e7c4958e" + "135a13f5-01a6-4d19-938d-6978050a3d72" ], "x-ms-correlation-request-id": [ - "d72b71f4-96e3-4a18-b19c-9d56e7c4958e" + "135a13f5-01a6-4d19-938d-6978050a3d72" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061321Z:d72b71f4-96e3-4a18-b19c-9d56e7c4958e" + "WESTUS:20230217T011657Z:135a13f5-01a6-4d19-938d-6978050a3d72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -948,7 +948,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:21 GMT" + "Fri, 17 Feb 2023 01:16:56 GMT" ], "Content-Length": [ "833" @@ -960,28 +960,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69933650-ad4c-4c6d-bf55-eddd06e8aad0" + "4a0aba35-b50d-43c5-bdb9-820a6aa148c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -993,16 +993,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-request-id": [ - "3e0ee334-f7b1-4738-b2a1-e8cc50644eec" + "2549984a-b29b-4040-8682-d623e0960c34" ], "x-ms-correlation-request-id": [ - "3e0ee334-f7b1-4738-b2a1-e8cc50644eec" + "2549984a-b29b-4040-8682-d623e0960c34" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061322Z:3e0ee334-f7b1-4738-b2a1-e8cc50644eec" + "WESTUS:20230217T011657Z:2549984a-b29b-4040-8682-d623e0960c34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,7 +1011,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:21 GMT" + "Fri, 17 Feb 2023 01:16:57 GMT" ], "Content-Length": [ "833" @@ -1023,28 +1023,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90c2b393-e4ba-4da0-9516-15a50ab99ac9" + "653cd54a-8ee7-4051-a276-992dfb7a638a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1056,16 +1056,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-request-id": [ - "13f13f30-02f5-49a3-a978-9e7fcabc31ef" + "e77e098b-3e5b-44ac-a817-4003cd1e62c9" ], "x-ms-correlation-request-id": [ - "13f13f30-02f5-49a3-a978-9e7fcabc31ef" + "e77e098b-3e5b-44ac-a817-4003cd1e62c9" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061322Z:13f13f30-02f5-49a3-a978-9e7fcabc31ef" + "WESTUS:20230217T011657Z:e77e098b-3e5b-44ac-a817-4003cd1e62c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1074,7 +1074,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:22 GMT" + "Fri, 17 Feb 2023 01:16:57 GMT" ], "Content-Length": [ "833" @@ -1086,28 +1086,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ed1dc8a-a67a-4621-8a17-54dd17c2bec1" + "8c054a1c-7bb6-42cb-a0d6-6f43393982e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1119,16 +1119,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11996" ], "x-ms-request-id": [ - "b7e80ccc-274f-4ef5-86f6-d28483b39160" + "c73aaf7b-fadf-4539-b943-f5d6b6a35aeb" ], "x-ms-correlation-request-id": [ - "b7e80ccc-274f-4ef5-86f6-d28483b39160" + "c73aaf7b-fadf-4539-b943-f5d6b6a35aeb" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061322Z:b7e80ccc-274f-4ef5-86f6-d28483b39160" + "WESTUS:20230217T011658Z:c73aaf7b-fadf-4539-b943-f5d6b6a35aeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1137,7 +1137,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:22 GMT" + "Fri, 17 Feb 2023 01:16:58 GMT" ], "Content-Length": [ "833" @@ -1149,28 +1149,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0549b541-d9e4-4ee8-a81a-bd45dfb1aff1" + "7240f8f3-cf12-4b44-8825-3cfcdff0620d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1182,16 +1182,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "2cff5a68-4d06-4105-b9d0-61d423be5cb7" + "9cc88ce1-0159-4d1d-8cfa-022cf7023000" ], "x-ms-correlation-request-id": [ - "2cff5a68-4d06-4105-b9d0-61d423be5cb7" + "9cc88ce1-0159-4d1d-8cfa-022cf7023000" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061322Z:2cff5a68-4d06-4105-b9d0-61d423be5cb7" + "WESTUS:20230217T011658Z:9cc88ce1-0159-4d1d-8cfa-022cf7023000" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1200,7 +1200,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:22 GMT" + "Fri, 17 Feb 2023 01:16:58 GMT" ], "Content-Length": [ "833" @@ -1212,28 +1212,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a03c984c-9791-4df0-9e02-5d4458dac94c" + "6de33c9d-77b5-4e8d-b658-658bdfcaf097" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1245,16 +1245,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-request-id": [ - "c9d9add2-6b65-4b05-8eed-5522ecfdfbf0" + "f93aff1e-112d-42e9-ab40-4be239748f80" ], "x-ms-correlation-request-id": [ - "c9d9add2-6b65-4b05-8eed-5522ecfdfbf0" + "f93aff1e-112d-42e9-ab40-4be239748f80" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061323Z:c9d9add2-6b65-4b05-8eed-5522ecfdfbf0" + "WESTUS:20230217T011659Z:f93aff1e-112d-42e9-ab40-4be239748f80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1263,7 +1263,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:22 GMT" + "Fri, 17 Feb 2023 01:16:58 GMT" ], "Content-Length": [ "833" @@ -1275,28 +1275,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad7a8ba5-77db-4ed9-beb7-ea3f90ecd42f" + "27d9578b-29d0-4262-9c11-0b21b1cd9e59" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1308,16 +1308,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-request-id": [ - "c8f68d10-271b-4eaa-87d1-c32bef8bd59c" + "24cb0178-3835-4e33-869d-358e6e13c608" ], "x-ms-correlation-request-id": [ - "c8f68d10-271b-4eaa-87d1-c32bef8bd59c" + "24cb0178-3835-4e33-869d-358e6e13c608" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061323Z:c8f68d10-271b-4eaa-87d1-c32bef8bd59c" + "WESTUS:20230217T011659Z:24cb0178-3835-4e33-869d-358e6e13c608" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1326,7 +1326,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:23 GMT" + "Fri, 17 Feb 2023 01:16:59 GMT" ], "Content-Length": [ "833" @@ -1338,28 +1338,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23d974d0-d166-4032-b61d-dc6071d2c8f1" + "fa6147c0-fb90-413e-9374-b04d426565c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1371,16 +1371,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11995" ], "x-ms-request-id": [ - "f142ed7c-4737-4ca6-bc97-a4e6c8ea6455" + "84f51040-5e78-4c48-8944-e36ac314a285" ], "x-ms-correlation-request-id": [ - "f142ed7c-4737-4ca6-bc97-a4e6c8ea6455" + "84f51040-5e78-4c48-8944-e36ac314a285" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061323Z:f142ed7c-4737-4ca6-bc97-a4e6c8ea6455" + "WESTUS:20230217T011700Z:84f51040-5e78-4c48-8944-e36ac314a285" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,7 +1389,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:23 GMT" + "Fri, 17 Feb 2023 01:16:59 GMT" ], "Content-Length": [ "833" @@ -1401,28 +1401,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c080e97c-ff91-4b68-b4bb-d84bbd5506ee" + "89484bec-3526-4ad5-92de-02eef52fe42b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1434,16 +1434,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11999" ], "x-ms-request-id": [ - "f7dd0f64-6aef-4f8c-8626-342e680a90cc" + "0e8d9226-4999-4b26-9ba7-040ede16ed21" ], "x-ms-correlation-request-id": [ - "f7dd0f64-6aef-4f8c-8626-342e680a90cc" + "0e8d9226-4999-4b26-9ba7-040ede16ed21" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061323Z:f7dd0f64-6aef-4f8c-8626-342e680a90cc" + "WESTUS:20230217T011700Z:0e8d9226-4999-4b26-9ba7-040ede16ed21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1452,7 +1452,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:23 GMT" + "Fri, 17 Feb 2023 01:16:59 GMT" ], "Content-Length": [ "833" @@ -1464,28 +1464,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6894b4b4-6503-4328-8038-4540c5873a9e" + "925f9797-1dda-491a-a23d-ff720d50a885" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1497,16 +1497,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11999" ], "x-ms-request-id": [ - "6f7e6593-673b-49e5-9fae-8fdfd8f1397a" + "8423957c-f48a-4e6e-a28e-626ece81492e" ], "x-ms-correlation-request-id": [ - "6f7e6593-673b-49e5-9fae-8fdfd8f1397a" + "8423957c-f48a-4e6e-a28e-626ece81492e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061324Z:6f7e6593-673b-49e5-9fae-8fdfd8f1397a" + "WESTUS:20230217T011701Z:8423957c-f48a-4e6e-a28e-626ece81492e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1515,7 +1515,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:23 GMT" + "Fri, 17 Feb 2023 01:17:01 GMT" ], "Content-Length": [ "833" @@ -1527,28 +1527,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76d87c99-2467-4189-a8de-6477a89f61c7" + "597ff720-b6f0-46ad-a9fe-0fbc78d97793" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1560,16 +1560,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-request-id": [ - "3cf70bc1-42ed-4ff8-9f5a-9678f00c8a14" + "6c87e89c-e4a6-4b0c-8b8d-8840d73dfbce" ], "x-ms-correlation-request-id": [ - "3cf70bc1-42ed-4ff8-9f5a-9678f00c8a14" + "6c87e89c-e4a6-4b0c-8b8d-8840d73dfbce" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061324Z:3cf70bc1-42ed-4ff8-9f5a-9678f00c8a14" + "WESTUS:20230217T011701Z:6c87e89c-e4a6-4b0c-8b8d-8840d73dfbce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1578,7 +1578,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:24 GMT" + "Fri, 17 Feb 2023 01:17:01 GMT" ], "Content-Length": [ "833" @@ -1590,28 +1590,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53bb12a6-6fc2-4274-946e-6cfd99a8ec46" + "ac4cd18a-cd51-46cf-ad9c-b60ae2aebfdc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1623,16 +1623,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11998" ], "x-ms-request-id": [ - "1862f4c3-f1d4-462e-b696-85c93274f641" + "017a1ec0-bcf5-4f1c-92f3-6e026bacde97" ], "x-ms-correlation-request-id": [ - "1862f4c3-f1d4-462e-b696-85c93274f641" + "017a1ec0-bcf5-4f1c-92f3-6e026bacde97" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061325Z:1862f4c3-f1d4-462e-b696-85c93274f641" + "WESTUS:20230217T011702Z:017a1ec0-bcf5-4f1c-92f3-6e026bacde97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1641,7 +1641,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:25 GMT" + "Fri, 17 Feb 2023 01:17:01 GMT" ], "Content-Length": [ "833" @@ -1653,28 +1653,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2cd1d6c-5f6c-465b-837d-15fea53ed537" + "4dc2e3d9-aefe-4550-9889-c445aae8133f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1686,16 +1686,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11999" ], "x-ms-request-id": [ - "caa16e18-4793-4f45-bee1-8908d6ca6f6d" + "e9145cd5-100d-4d04-afcb-9d56fbe08bfd" ], "x-ms-correlation-request-id": [ - "caa16e18-4793-4f45-bee1-8908d6ca6f6d" + "e9145cd5-100d-4d04-afcb-9d56fbe08bfd" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061325Z:caa16e18-4793-4f45-bee1-8908d6ca6f6d" + "WESTUS:20230217T011703Z:e9145cd5-100d-4d04-afcb-9d56fbe08bfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1704,7 +1704,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:25 GMT" + "Fri, 17 Feb 2023 01:17:02 GMT" ], "Content-Length": [ "833" @@ -1716,28 +1716,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2152143e-849c-489a-8a7f-2c3e03b5497d" + "df72cd82-ce97-4a91-b276-0e1d3b2da9df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1749,16 +1749,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11998" ], "x-ms-request-id": [ - "820af945-bfdc-4790-90e8-a9eefd8d1231" + "cda266fd-6234-4fa3-a7f0-17a719fb0d7b" ], "x-ms-correlation-request-id": [ - "820af945-bfdc-4790-90e8-a9eefd8d1231" + "cda266fd-6234-4fa3-a7f0-17a719fb0d7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061326Z:820af945-bfdc-4790-90e8-a9eefd8d1231" + "WESTUS:20230217T011703Z:cda266fd-6234-4fa3-a7f0-17a719fb0d7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1767,7 +1767,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:25 GMT" + "Fri, 17 Feb 2023 01:17:03 GMT" ], "Content-Length": [ "833" @@ -1779,28 +1779,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83214983-2a0a-49fd-b365-75a2e6680632" + "6c8f66eb-bc95-46cf-938c-5650be7d0fe5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1812,16 +1812,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11998" ], "x-ms-request-id": [ - "c5e055fa-5230-4904-8121-047fd19a7c58" + "9968df32-25f4-4176-bad9-33b2ae268f55" ], "x-ms-correlation-request-id": [ - "c5e055fa-5230-4904-8121-047fd19a7c58" + "9968df32-25f4-4176-bad9-33b2ae268f55" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061326Z:c5e055fa-5230-4904-8121-047fd19a7c58" + "WESTUS:20230217T011704Z:9968df32-25f4-4176-bad9-33b2ae268f55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1830,7 +1830,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:26 GMT" + "Fri, 17 Feb 2023 01:17:03 GMT" ], "Content-Length": [ "833" @@ -1842,28 +1842,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c415c841-fb85-47aa-afd7-195cec854818" + "9702ec96-6031-4216-a574-213ec99d8085" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1875,16 +1875,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11998" ], "x-ms-request-id": [ - "6bc48fce-53b1-4624-a251-a1550bc24ffe" + "76ddd799-3695-4c7d-b841-20ca217c03f6" ], "x-ms-correlation-request-id": [ - "6bc48fce-53b1-4624-a251-a1550bc24ffe" + "76ddd799-3695-4c7d-b841-20ca217c03f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061327Z:6bc48fce-53b1-4624-a251-a1550bc24ffe" + "WESTUS:20230217T011705Z:76ddd799-3695-4c7d-b841-20ca217c03f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1893,7 +1893,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:26 GMT" + "Fri, 17 Feb 2023 01:17:04 GMT" ], "Content-Length": [ "833" @@ -1905,28 +1905,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "448dc5cc-55b0-4d1d-b7fe-e3c559babd4b" + "59553c75-390d-4160-8de4-e87fd453850e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1938,16 +1938,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11999" ], "x-ms-request-id": [ - "45bc91c9-095a-42fc-a2bd-bd8435df74ee" + "644959f2-934e-47d1-957d-67eb5fe2dcfa" ], "x-ms-correlation-request-id": [ - "45bc91c9-095a-42fc-a2bd-bd8435df74ee" + "644959f2-934e-47d1-957d-67eb5fe2dcfa" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061327Z:45bc91c9-095a-42fc-a2bd-bd8435df74ee" + "WESTUS:20230217T011705Z:644959f2-934e-47d1-957d-67eb5fe2dcfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1956,7 +1956,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:27 GMT" + "Fri, 17 Feb 2023 01:17:05 GMT" ], "Content-Length": [ "833" @@ -1968,28 +1968,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ebc8c73-4565-4f71-ac32-ffe49bd844cd" + "d706de23-3077-4237-b058-24c9202629be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2001,16 +2001,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11996" ], "x-ms-request-id": [ - "c9c1b44e-9727-44f5-bb54-337ed4d23de9" + "9cff9ef8-2cc0-40f0-a011-a02d9d1aab5e" ], "x-ms-correlation-request-id": [ - "c9c1b44e-9727-44f5-bb54-337ed4d23de9" + "9cff9ef8-2cc0-40f0-a011-a02d9d1aab5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061328Z:c9c1b44e-9727-44f5-bb54-337ed4d23de9" + "WESTUS:20230217T011706Z:9cff9ef8-2cc0-40f0-a011-a02d9d1aab5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2019,7 +2019,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:27 GMT" + "Fri, 17 Feb 2023 01:17:06 GMT" ], "Content-Length": [ "833" @@ -2031,28 +2031,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "623d3e8e-77da-4127-ad51-9e80d29a4f8d" + "ae9b957b-30a1-47cb-93fd-8cc01c22ab1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2064,16 +2064,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11999" ], "x-ms-request-id": [ - "49009457-37ca-4d08-82d6-b695190085d7" + "5af8825e-dbea-4e44-a935-90fecf2fc742" ], "x-ms-correlation-request-id": [ - "49009457-37ca-4d08-82d6-b695190085d7" + "5af8825e-dbea-4e44-a935-90fecf2fc742" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061328Z:49009457-37ca-4d08-82d6-b695190085d7" + "WESTUS:20230217T011707Z:5af8825e-dbea-4e44-a935-90fecf2fc742" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2082,7 +2082,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:28 GMT" + "Fri, 17 Feb 2023 01:17:06 GMT" ], "Content-Length": [ "833" @@ -2094,28 +2094,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3008913e-e4e5-441d-b006-bb4cc8bcec12" + "6753ef66-c662-47c4-ad5f-05d8a6e74bc6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2127,16 +2127,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11997" ], "x-ms-request-id": [ - "609c9d53-4068-4515-b4f8-0442a34a4aea" + "d3abf6e3-a11d-4667-818e-d9939f7f7876" ], "x-ms-correlation-request-id": [ - "609c9d53-4068-4515-b4f8-0442a34a4aea" + "d3abf6e3-a11d-4667-818e-d9939f7f7876" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061329Z:609c9d53-4068-4515-b4f8-0442a34a4aea" + "WESTUS:20230217T011707Z:d3abf6e3-a11d-4667-818e-d9939f7f7876" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2145,7 +2145,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:28 GMT" + "Fri, 17 Feb 2023 01:17:06 GMT" ], "Content-Length": [ "833" @@ -2157,28 +2157,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5519793-cec8-4b99-8c7a-9a3bb1f17c1f" + "17258ae7-8264-4236-93ab-75b6a45fcf5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2190,16 +2190,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11999" ], "x-ms-request-id": [ - "76028530-b9c8-4dfd-8aeb-d17e600a3eca" + "8f94519b-f90d-4926-b48d-f5e71dd182c8" ], "x-ms-correlation-request-id": [ - "76028530-b9c8-4dfd-8aeb-d17e600a3eca" + "8f94519b-f90d-4926-b48d-f5e71dd182c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061329Z:76028530-b9c8-4dfd-8aeb-d17e600a3eca" + "WESTUS:20230217T011708Z:8f94519b-f90d-4926-b48d-f5e71dd182c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2208,7 +2208,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:29 GMT" + "Fri, 17 Feb 2023 01:17:08 GMT" ], "Content-Length": [ "833" @@ -2220,28 +2220,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "676f1aa6-6bff-47cc-91e9-848984ebb367" + "04c4654c-a2a2-401a-958c-3eb426d6dc6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2253,16 +2253,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11999" ], "x-ms-request-id": [ - "bd418a72-42a7-42e4-baf5-5abc239059aa" + "236cd94a-e853-48f6-b6fc-6b932b118362" ], "x-ms-correlation-request-id": [ - "bd418a72-42a7-42e4-baf5-5abc239059aa" + "236cd94a-e853-48f6-b6fc-6b932b118362" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061330Z:bd418a72-42a7-42e4-baf5-5abc239059aa" + "WESTUS:20230217T011709Z:236cd94a-e853-48f6-b6fc-6b932b118362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,7 +2271,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:29 GMT" + "Fri, 17 Feb 2023 01:17:08 GMT" ], "Content-Length": [ "833" @@ -2283,28 +2283,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "676f1aa6-6bff-47cc-91e9-848984ebb367" + "04c4654c-a2a2-401a-958c-3eb426d6dc6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2316,16 +2316,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11998" ], "x-ms-request-id": [ - "94212302-2c4b-4b6a-a3f9-9903e40aa6a4" + "b250885b-6e9e-4400-864e-a172548b9d1d" ], "x-ms-correlation-request-id": [ - "94212302-2c4b-4b6a-a3f9-9903e40aa6a4" + "b250885b-6e9e-4400-864e-a172548b9d1d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061330Z:94212302-2c4b-4b6a-a3f9-9903e40aa6a4" + "WESTUS:20230217T011709Z:b250885b-6e9e-4400-864e-a172548b9d1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2334,7 +2334,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:29 GMT" + "Fri, 17 Feb 2023 01:17:09 GMT" ], "Content-Length": [ "833" @@ -2346,25 +2346,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXvb4=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3081.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps3081.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFUY=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2835.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "676f1aa6-6bff-47cc-91e9-848984ebb367" + "04c4654c-a2a2-401a-958c-3eb426d6dc6a" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2376,16 +2376,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11996" ], "x-ms-request-id": [ - "b646a281-1163-4c16-8998-6ca14c1d4a53" + "94033c82-f8b7-439c-9a21-6f5185bc8ec8" ], "x-ms-correlation-request-id": [ - "b646a281-1163-4c16-8998-6ca14c1d4a53" + "94033c82-f8b7-439c-9a21-6f5185bc8ec8" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061401Z:b646a281-1163-4c16-8998-6ca14c1d4a53" + "WESTUS:20230217T011740Z:94033c82-f8b7-439c-9a21-6f5185bc8ec8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2394,7 +2394,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:14:01 GMT" + "Fri, 17 Feb 2023 01:17:39 GMT" ], "Content-Length": [ "640" @@ -2406,26 +2406,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXviE=\",\r\n \"name\": \"ps5023\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5023.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361B7\"\r\n },\r\n \"resourcegroup\": \"ps3863\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfFdI=\",\r\n \"name\": \"ps4469\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4469.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D507\"\r\n },\r\n \"resourcegroup\": \"ps5934\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwODE/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI4MzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "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": [ - "f9d7ada5-f691-4cda-a2a2-98586a61d635" + "2d4aad9f-e1b2-4f21-93ed-e563485bd36d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2434,6 +2433,7 @@ "85" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2442,7 +2442,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQyZDYwNWYtMWE3Mi00YjZhLTlmM2ItYWYyZmJlZjNkZmFi?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYmU5NTY2ZjctNmY2OS00NTIyLWE5YzYtZTU0YjNlM2M1OGFjO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2451,13 +2451,13 @@ "4999" ], "x-ms-request-id": [ - "2f373772-44e5-433e-bbb6-7fc97aa3e703" + "e70dda4a-bdf4-49e6-b94c-1ed6ec02044f" ], "x-ms-correlation-request-id": [ - "2f373772-44e5-433e-bbb6-7fc97aa3e703" + "e70dda4a-bdf4-49e6-b94c-1ed6ec02044f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T060941Z:2f373772-44e5-433e-bbb6-7fc97aa3e703" + "WESTCENTRALUS:20230217T011345Z:e70dda4a-bdf4-49e6-b94c-1ed6ec02044f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2466,10 +2466,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:09:40 GMT" + "Fri, 17 Feb 2023 01:13:44 GMT" ], "Content-Length": [ - "619" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2478,34 +2478,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081\",\r\n \"name\": \"ps3081\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps3863\",\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835\",\r\n \"name\": \"ps2835\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5934\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwODE/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI4MzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAACrurVts=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"68LwgpMYtLFNDOsRvQfsBGaUw1CRuyer/+pCK2LW3+4=\",\r\n \"secondaryKey\": \"z99BOKBGFvnX6m98goMBNSka/w9PVcsGdCtc3k2TrI0=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"XS8JOGnJyezFpb+qt56BfggTLnZrppV7qO9fyd3dt6g=\",\r\n \"secondaryKey\": \"h9KkGD7Hsr/L5Hw+v93CoinU3WQy47w3JT+gsYRX0pY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NvWSmw2xE3cUZXjPDvk/nsnUUb+Xgx5Ybg3pXPrR/M8=\",\r\n \"secondaryKey\": \"Jo3BLfrD2R+0K/C1ThOUHZ4zlIuyJzdpfVKD/bobXOI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"LNO6+qh82TWD3y+mzQG95nDthSHxQJgDg24pFdxAPrY=\",\r\n \"secondaryKey\": \"bqZOQC3MJuJMdaACdg74EuMfjYu333B2oxA+NJqugYk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mB0WVurbEaYIxYEcV+5A6eLepV+0pcysy61+BfxmwTo=\",\r\n \"secondaryKey\": \"l/JWHeVWYxWkCfu0MHcuoScRi3l9ctnuBSaEUnJsldA=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"ServiceConnect\"\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 \"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\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "34f612fa-57f4-49c9-be06-1fb7960cc537" + "cdc923e5-9c9d-4d73-af8e-6fe8f556b8a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2704" + "2790" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAADHxYFyY=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\r\n }\r\n ],\r\n \"allowedFqdnList\": [],\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 },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"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 \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2514,22 +2514,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfOWQ0N2Y3N2UtOTE5YS00OWZiLTk3NjItMjBhNWI0MGRhMzM0?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYTE5MTUxNTMtNWRlYS00NDMwLWFkNTUtZTY4ODVkMzMzNTIyO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4998" + "4999" ], "x-ms-request-id": [ - "10b2d5dd-8928-4216-a101-b18b2baae105" + "49085534-fa3d-461f-bb6b-0e54a12bc258" ], "x-ms-correlation-request-id": [ - "10b2d5dd-8928-4216-a101-b18b2baae105" + "49085534-fa3d-461f-bb6b-0e54a12bc258" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061217Z:10b2d5dd-8928-4216-a101-b18b2baae105" + "WESTUS:20230217T011551Z:49085534-fa3d-461f-bb6b-0e54a12bc258" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2538,10 +2538,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:12:16 GMT" + "Fri, 17 Feb 2023 01:15:50 GMT" ], "Content-Length": [ - "4128" + "4080" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2550,85 +2550,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081\",\r\n \"name\": \"ps3081\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps3863\",\r\n \"etag\": \"AAAACrurVts=\",\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\": \"68LwgpMYtLFNDOsRvQfsBGaUw1CRuyer/+pCK2LW3+4=\",\r\n \"secondaryKey\": \"z99BOKBGFvnX6m98goMBNSka/w9PVcsGdCtc3k2TrI0=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"XS8JOGnJyezFpb+qt56BfggTLnZrppV7qO9fyd3dt6g=\",\r\n \"secondaryKey\": \"h9KkGD7Hsr/L5Hw+v93CoinU3WQy47w3JT+gsYRX0pY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NvWSmw2xE3cUZXjPDvk/nsnUUb+Xgx5Ybg3pXPrR/M8=\",\r\n \"secondaryKey\": \"Jo3BLfrD2R+0K/C1ThOUHZ4zlIuyJzdpfVKD/bobXOI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"LNO6+qh82TWD3y+mzQG95nDthSHxQJgDg24pFdxAPrY=\",\r\n \"secondaryKey\": \"bqZOQC3MJuJMdaACdg74EuMfjYu333B2oxA+NJqugYk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mB0WVurbEaYIxYEcV+5A6eLepV+0pcysy61+BfxmwTo=\",\r\n \"secondaryKey\": \"l/JWHeVWYxWkCfu0MHcuoScRi3l9ctnuBSaEUnJsldA=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"T8iTDXuDnQHXIKClRYAJ8DZAdwIecaZAcWDadxHdpg0=\",\r\n \"secondaryKey\": \"oW0jEX0zv9o+1pd9mQ/jFiDYzZrwzyBKxNs0TZVhBFI=\",\r\n \"rights\": \"ServiceConnect\"\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\": \"ps3081-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps3081-8388724-f1c4b5afa3.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"scaleunitsend-9525fe52-555c-48a5-a87b-52efb9192373-iothub\",\r\n \"PrimaryKey\": \"IitRMfq3ll7a6XXBufC1/UzOy6ZTS+XxaBFt8c+oG/g=\",\r\n \"SecondaryKey\": \"DogcZGF7aBvAjCeVYDhNKJ2PrsPXTqafUbKGTXMxJtA=\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:11:26 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:11:26 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"owner-6fa2e82f-bb26-41ea-a972-cebe82fc314a-iothub\",\r\n \"PrimaryKey\": \"gsrFHs2hcBOLeGn7eZw0RJoXYOo74Z2bt6YDES3k7bY=\",\r\n \"SecondaryKey\": \"ZzHaoM9WRobEJj2bKNtGvxeqVq0pPHZ4YxwjM/RVYvg=\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:11:26 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:11:26 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"68LwgpMYtLFNDOsRvQfsBGaUw1CRuyer/+pCK2LW3+4=\",\r\n \"SecondaryKey\": \"z99BOKBGFvnX6m98goMBNSka/w9PVcsGdCtc3k2TrI0=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:11:26 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:11:26 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"XS8JOGnJyezFpb+qt56BfggTLnZrppV7qO9fyd3dt6g=\",\r\n \"SecondaryKey\": \"h9KkGD7Hsr/L5Hw+v93CoinU3WQy47w3JT+gsYRX0pY=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:11:26 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:11: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 \"storageContainers\": [],\r\n \"cosmosDBSqlCollections\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835\",\r\n \"name\": \"ps2835\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5934\",\r\n \"etag\": \"AAAADHxYFyY=\",\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\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\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\": \"ps2835-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2835-24621393-6dcdfc3f00.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"scaleunitsend-b1e582e2-9990-4072-8294-0b3e83976dec-iothub\",\r\n \"PrimaryKey\": \"v/rimDvoyFH5Hmmmv+RTNgVleBxV6KlHHe99aIfN/28=\",\r\n \"SecondaryKey\": \"70ixjIPoCCaUVkoN4x6pePVn+Wj2vIhJduvKUr7EKBo=\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 01:15:18 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 01:15:18 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"owner-b17b09a2-0f5f-4d1b-98fc-6b66c1948ca4-iothub\",\r\n \"PrimaryKey\": \"6n0p2kX5bdnAclIDLoqIdYHfUbho+sagzSdH7GV8+tg=\",\r\n \"SecondaryKey\": \"vQdgseYP5dbOHFmGzqU4jMjDL6WgQSj+DHim8EBzjCk=\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 01:15:18 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 01:15:18 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"HCKvOCCOxSgvS80qb2HrgiuiDbUW1mIKWAP03t6tlTI=\",\r\n \"SecondaryKey\": \"koj12ZYI9dN3P9edyW1YgIOWagqLjSW7XdQZFyVRUWk=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 01:15:18 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 01:15:18 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"03I111sbyMFX2m2GO88+JRW3Hd5IdHo7UzcSvpNyBZY=\",\r\n \"SecondaryKey\": \"0jiKR6VOlGThG6MRuzbzPnpEXdUd7F98IFRhK086nco=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 01:15:18 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 01:15:18 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 \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQyZDYwNWYtMWE3Mi00YjZhLTlmM2ItYWYyZmJlZjNkZmFi?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRReVpEWXdOV1l0TVdFM01pMDBZalpoTFRsbU0ySXRZV1l5Wm1KbFpqTmtabUZpP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYmU5NTY2ZjctNmY2OS00NTIyLWE5YzYtZTU0YjNlM2M1OGFjO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWW1VNU5UWTJaamN0Tm1ZMk9TMDBOVEl5TFdFNVl6WXRaVFUwWWpObE0yTTFPR0ZqTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9d7ada5-f691-4cda-a2a2-98586a61d635" + "2d4aad9f-e1b2-4f21-93ed-e563485bd36d" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "42959d76-bf23-4b7c-932f-35634e71af20" - ], - "x-ms-correlation-request-id": [ - "42959d76-bf23-4b7c-932f-35634e71af20" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T061011Z:42959d76-bf23-4b7c-932f-35634e71af20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:10:11 GMT" - ], - "Content-Length": [ - "20" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQyZDYwNWYtMWE3Mi00YjZhLTlmM2ItYWYyZmJlZjNkZmFi?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRReVpEWXdOV1l0TVdFM01pMDBZalpoTFRsbU0ySXRZV1l5Wm1KbFpqTmtabUZpP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f9d7ada5-f691-4cda-a2a2-98586a61d635" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2640,16 +2580,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-request-id": [ - "535f66fd-3cb6-4072-acd6-be97672395e9" + "c22929fb-5f96-49cf-b11a-1412e60c9873" ], "x-ms-correlation-request-id": [ - "535f66fd-3cb6-4072-acd6-be97672395e9" + "c22929fb-5f96-49cf-b11a-1412e60c9873" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061041Z:535f66fd-3cb6-4072-acd6-be97672395e9" + "WESTCENTRALUS:20230217T011415Z:c22929fb-5f96-49cf-b11a-1412e60c9873" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2658,7 +2598,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:10:41 GMT" + "Fri, 17 Feb 2023 01:14:14 GMT" ], "Content-Length": [ "20" @@ -2674,21 +2614,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQyZDYwNWYtMWE3Mi00YjZhLTlmM2ItYWYyZmJlZjNkZmFi?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRReVpEWXdOV1l0TVdFM01pMDBZalpoTFRsbU0ySXRZV1l5Wm1KbFpqTmtabUZpP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYmU5NTY2ZjctNmY2OS00NTIyLWE5YzYtZTU0YjNlM2M1OGFjO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWW1VNU5UWTJaamN0Tm1ZMk9TMDBOVEl5TFdFNVl6WXRaVFUwWWpObE0yTTFPR0ZqTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9d7ada5-f691-4cda-a2a2-98586a61d635" + "2d4aad9f-e1b2-4f21-93ed-e563485bd36d" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2700,16 +2640,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11992" ], "x-ms-request-id": [ - "dea3831f-8f0d-4feb-9ff2-f2dcc387077b" + "4366ca9b-316b-4d34-99c8-06a3d87ffa4a" ], "x-ms-correlation-request-id": [ - "dea3831f-8f0d-4feb-9ff2-f2dcc387077b" + "4366ca9b-316b-4d34-99c8-06a3d87ffa4a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061112Z:dea3831f-8f0d-4feb-9ff2-f2dcc387077b" + "WESTCENTRALUS:20230217T011445Z:4366ca9b-316b-4d34-99c8-06a3d87ffa4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2718,7 +2658,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:11:11 GMT" + "Fri, 17 Feb 2023 01:14:44 GMT" ], "Content-Length": [ "20" @@ -2734,21 +2674,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQyZDYwNWYtMWE3Mi00YjZhLTlmM2ItYWYyZmJlZjNkZmFi?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRReVpEWXdOV1l0TVdFM01pMDBZalpoTFRsbU0ySXRZV1l5Wm1KbFpqTmtabUZpP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYmU5NTY2ZjctNmY2OS00NTIyLWE5YzYtZTU0YjNlM2M1OGFjO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWW1VNU5UWTJaamN0Tm1ZMk9TMDBOVEl5TFdFNVl6WXRaVFUwWWpObE0yTTFPR0ZqTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9d7ada5-f691-4cda-a2a2-98586a61d635" + "2d4aad9f-e1b2-4f21-93ed-e563485bd36d" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2760,16 +2700,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11991" ], "x-ms-request-id": [ - "36e1ec4b-0907-4fb3-9baf-dd189c37acee" + "90fd814c-9ebf-4cb8-9ab0-6942b2959667" ], "x-ms-correlation-request-id": [ - "36e1ec4b-0907-4fb3-9baf-dd189c37acee" + "90fd814c-9ebf-4cb8-9ab0-6942b2959667" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061142Z:36e1ec4b-0907-4fb3-9baf-dd189c37acee" + "WESTCENTRALUS:20230217T011515Z:90fd814c-9ebf-4cb8-9ab0-6942b2959667" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2778,7 +2718,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:11:41 GMT" + "Fri, 17 Feb 2023 01:15:14 GMT" ], "Content-Length": [ "20" @@ -2794,21 +2734,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfNTQyZDYwNWYtMWE3Mi00YjZhLTlmM2ItYWYyZmJlZjNkZmFi?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRReVpEWXdOV1l0TVdFM01pMDBZalpoTFRsbU0ySXRZV1l5Wm1KbFpqTmtabUZpP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYmU5NTY2ZjctNmY2OS00NTIyLWE5YzYtZTU0YjNlM2M1OGFjO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWW1VNU5UWTJaamN0Tm1ZMk9TMDBOVEl5TFdFNVl6WXRaVFUwWWpObE0yTTFPR0ZqTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9d7ada5-f691-4cda-a2a2-98586a61d635" + "2d4aad9f-e1b2-4f21-93ed-e563485bd36d" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2820,16 +2760,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11990" ], "x-ms-request-id": [ - "1429f54d-40a2-48d3-8e27-b91a2798f9e2" + "1777793f-fca6-4380-b7b0-056be927308d" ], "x-ms-correlation-request-id": [ - "1429f54d-40a2-48d3-8e27-b91a2798f9e2" + "1777793f-fca6-4380-b7b0-056be927308d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061212Z:1429f54d-40a2-48d3-8e27-b91a2798f9e2" + "WESTCENTRALUS:20230217T011545Z:1777793f-fca6-4380-b7b0-056be927308d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2838,7 +2778,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:12:12 GMT" + "Fri, 17 Feb 2023 01:15:45 GMT" ], "Content-Length": [ "22" @@ -2854,21 +2794,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwODE/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI4MzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9d7ada5-f691-4cda-a2a2-98586a61d635" + "2d4aad9f-e1b2-4f21-93ed-e563485bd36d" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2880,16 +2820,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11989" ], "x-ms-request-id": [ - "8583a004-cf72-48ff-9917-7039508724cc" + "ba4cd14e-37d2-40a2-a402-0063bc24ee17" ], "x-ms-correlation-request-id": [ - "8583a004-cf72-48ff-9917-7039508724cc" + "ba4cd14e-37d2-40a2-a402-0063bc24ee17" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061213Z:8583a004-cf72-48ff-9917-7039508724cc" + "WESTCENTRALUS:20230217T011546Z:ba4cd14e-37d2-40a2-a402-0063bc24ee17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2898,10 +2838,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:12:12 GMT" + "Fri, 17 Feb 2023 01:15:46 GMT" ], "Content-Length": [ - "1487" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2910,28 +2850,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081\",\r\n \"name\": \"ps3081\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps3863\",\r\n \"etag\": \"AAAACrurVts=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3081.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3081\",\r\n \"endpoint\": \"sb://iothub-ns-ps3081-8388724-f1c4b5afa3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835\",\r\n \"name\": \"ps2835\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5934\",\r\n \"etag\": \"AAAADHxYFyY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2835.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2835\",\r\n \"endpoint\": \"sb://iothub-ns-ps2835-24621393-6dcdfc3f00.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T01:13:44.2033333Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwODE/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI4MzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9d7ada5-f691-4cda-a2a2-98586a61d635" + "2d4aad9f-e1b2-4f21-93ed-e563485bd36d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2943,16 +2883,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11988" ], "x-ms-request-id": [ - "2dca8f4a-e06b-4984-8d08-2fbd3168508c" + "159e6d0f-e0d5-45e3-920a-811d7ec6b57e" ], "x-ms-correlation-request-id": [ - "2dca8f4a-e06b-4984-8d08-2fbd3168508c" + "159e6d0f-e0d5-45e3-920a-811d7ec6b57e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061213Z:2dca8f4a-e06b-4984-8d08-2fbd3168508c" + "WESTCENTRALUS:20230217T011547Z:159e6d0f-e0d5-45e3-920a-811d7ec6b57e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2961,10 +2901,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:12:13 GMT" + "Fri, 17 Feb 2023 01:15:47 GMT" ], "Content-Length": [ - "1487" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2973,28 +2913,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081\",\r\n \"name\": \"ps3081\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps3863\",\r\n \"etag\": \"AAAACrurVts=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3081.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3081\",\r\n \"endpoint\": \"sb://iothub-ns-ps3081-8388724-f1c4b5afa3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835\",\r\n \"name\": \"ps2835\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5934\",\r\n \"etag\": \"AAAADHxYFyY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2835.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2835\",\r\n \"endpoint\": \"sb://iothub-ns-ps2835-24621393-6dcdfc3f00.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T01:13:44.2033333Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwODE/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI4MzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34f612fa-57f4-49c9-be06-1fb7960cc537" + "cdc923e5-9c9d-4d73-af8e-6fe8f556b8a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3006,16 +2946,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-request-id": [ - "c76d7af9-3475-440a-884f-014e21e4f90f" + "d907e2de-c035-41ac-a02f-8f617fa59dec" ], "x-ms-correlation-request-id": [ - "c76d7af9-3475-440a-884f-014e21e4f90f" + "d907e2de-c035-41ac-a02f-8f617fa59dec" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061214Z:c76d7af9-3475-440a-884f-014e21e4f90f" + "WESTUS:20230217T011548Z:d907e2de-c035-41ac-a02f-8f617fa59dec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3024,10 +2964,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:12:13 GMT" + "Fri, 17 Feb 2023 01:15:47 GMT" ], "Content-Length": [ - "1487" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3036,25 +2976,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081\",\r\n \"name\": \"ps3081\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps3863\",\r\n \"etag\": \"AAAACrurVts=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3081.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3081\",\r\n \"endpoint\": \"sb://iothub-ns-ps3081-8388724-f1c4b5afa3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835\",\r\n \"name\": \"ps2835\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5934\",\r\n \"etag\": \"AAAADHxYFyY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2835.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2835\",\r\n \"endpoint\": \"sb://iothub-ns-ps2835-24621393-6dcdfc3f00.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T01:13:44.2033333Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwODE/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI4MzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34f612fa-57f4-49c9-be06-1fb7960cc537" + "cdc923e5-9c9d-4d73-af8e-6fe8f556b8a8" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3066,16 +3006,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-request-id": [ - "d7c62d82-52fa-4ffa-9a86-61db4e31f6b3" + "fd8f65c1-2623-4782-9cd9-111d550c4e0c" ], "x-ms-correlation-request-id": [ - "d7c62d82-52fa-4ffa-9a86-61db4e31f6b3" + "fd8f65c1-2623-4782-9cd9-111d550c4e0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061248Z:d7c62d82-52fa-4ffa-9a86-61db4e31f6b3" + "WESTUS:20230217T011622Z:fd8f65c1-2623-4782-9cd9-111d550c4e0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3084,10 +3024,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:12:47 GMT" + "Fri, 17 Feb 2023 01:16:21 GMT" ], "Content-Length": [ - "1487" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3096,28 +3036,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081\",\r\n \"name\": \"ps3081\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps3863\",\r\n \"etag\": \"AAAACrur+IQ=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3081.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3081\",\r\n \"endpoint\": \"sb://iothub-ns-ps3081-8388724-f1c4b5afa3.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835\",\r\n \"name\": \"ps2835\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5934\",\r\n \"etag\": \"AAAADHxYF8g=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2835.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2835\",\r\n \"endpoint\": \"sb://iothub-ns-ps2835-24621393-6dcdfc3f00.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T01:13:44.2033333Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwODEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI4MzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34f612fa-57f4-49c9-be06-1fb7960cc537" + "cdc923e5-9c9d-4d73-af8e-6fe8f556b8a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3132,13 +3072,13 @@ "1199" ], "x-ms-request-id": [ - "6515811d-1ffd-4031-b0e6-5f193bbacaf5" + "f7550d00-43d0-4257-94eb-48bd61fafc50" ], "x-ms-correlation-request-id": [ - "6515811d-1ffd-4031-b0e6-5f193bbacaf5" + "f7550d00-43d0-4257-94eb-48bd61fafc50" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061214Z:6515811d-1ffd-4031-b0e6-5f193bbacaf5" + "WESTUS:20230217T011548Z:f7550d00-43d0-4257-94eb-48bd61fafc50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3147,7 +3087,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:12:14 GMT" + "Fri, 17 Feb 2023 01:15:47 GMT" ], "Content-Length": [ "905" @@ -3159,28 +3099,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"68LwgpMYtLFNDOsRvQfsBGaUw1CRuyer/+pCK2LW3+4=\",\r\n \"secondaryKey\": \"z99BOKBGFvnX6m98goMBNSka/w9PVcsGdCtc3k2TrI0=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"XS8JOGnJyezFpb+qt56BfggTLnZrppV7qO9fyd3dt6g=\",\r\n \"secondaryKey\": \"h9KkGD7Hsr/L5Hw+v93CoinU3WQy47w3JT+gsYRX0pY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NvWSmw2xE3cUZXjPDvk/nsnUUb+Xgx5Ybg3pXPrR/M8=\",\r\n \"secondaryKey\": \"Jo3BLfrD2R+0K/C1ThOUHZ4zlIuyJzdpfVKD/bobXOI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"LNO6+qh82TWD3y+mzQG95nDthSHxQJgDg24pFdxAPrY=\",\r\n \"secondaryKey\": \"bqZOQC3MJuJMdaACdg74EuMfjYu333B2oxA+NJqugYk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mB0WVurbEaYIxYEcV+5A6eLepV+0pcysy61+BfxmwTo=\",\r\n \"secondaryKey\": \"l/JWHeVWYxWkCfu0MHcuoScRi3l9ctnuBSaEUnJsldA=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwODEvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI4MzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34f612fa-57f4-49c9-be06-1fb7960cc537" + "cdc923e5-9c9d-4d73-af8e-6fe8f556b8a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3195,13 +3135,13 @@ "1198" ], "x-ms-request-id": [ - "b40ee5c3-041c-46d9-b2ea-b1f64e0d4c81" + "89b2ac77-ff40-4145-9e77-27ade8a3f77a" ], "x-ms-correlation-request-id": [ - "b40ee5c3-041c-46d9-b2ea-b1f64e0d4c81" + "89b2ac77-ff40-4145-9e77-27ade8a3f77a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061248Z:b40ee5c3-041c-46d9-b2ea-b1f64e0d4c81" + "WESTUS:20230217T011622Z:89b2ac77-ff40-4145-9e77-27ade8a3f77a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3210,10 +3150,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:12:47 GMT" + "Fri, 17 Feb 2023 01:16:21 GMT" ], "Content-Length": [ - "1078" + "1093" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3222,25 +3162,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"68LwgpMYtLFNDOsRvQfsBGaUw1CRuyer/+pCK2LW3+4=\",\r\n \"secondaryKey\": \"z99BOKBGFvnX6m98goMBNSka/w9PVcsGdCtc3k2TrI0=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"XS8JOGnJyezFpb+qt56BfggTLnZrppV7qO9fyd3dt6g=\",\r\n \"secondaryKey\": \"h9KkGD7Hsr/L5Hw+v93CoinU3WQy47w3JT+gsYRX0pY=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"NvWSmw2xE3cUZXjPDvk/nsnUUb+Xgx5Ybg3pXPrR/M8=\",\r\n \"secondaryKey\": \"Jo3BLfrD2R+0K/C1ThOUHZ4zlIuyJzdpfVKD/bobXOI=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"LNO6+qh82TWD3y+mzQG95nDthSHxQJgDg24pFdxAPrY=\",\r\n \"secondaryKey\": \"bqZOQC3MJuJMdaACdg74EuMfjYu333B2oxA+NJqugYk=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"mB0WVurbEaYIxYEcV+5A6eLepV+0pcysy61+BfxmwTo=\",\r\n \"secondaryKey\": \"l/JWHeVWYxWkCfu0MHcuoScRi3l9ctnuBSaEUnJsldA=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"T8iTDXuDnQHXIKClRYAJ8DZAdwIecaZAcWDadxHdpg0=\",\r\n \"secondaryKey\": \"oW0jEX0zv9o+1pd9mQ/jFiDYzZrwzyBKxNs0TZVhBFI=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfOWQ0N2Y3N2UtOTE5YS00OWZiLTk3NjItMjBhNWI0MGRhMzM0?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmT1dRME4yWTNOMlV0T1RFNVlTMDBPV1ppTFRrM05qSXRNakJoTldJME1HUmhNek0wP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYTE5MTUxNTMtNWRlYS00NDMwLWFkNTUtZTY4ODVkMzMzNTIyO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWVRFNU1UVXhOVE10TldSbFlTMDBORE13TFdGa05UVXRaVFk0T0RWa016TXpOVEl5TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34f612fa-57f4-49c9-be06-1fb7960cc537" + "cdc923e5-9c9d-4d73-af8e-6fe8f556b8a8" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3252,16 +3192,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-request-id": [ - "afa9c411-54d9-4160-8382-c265af5e6555" + "8c7c6a05-1512-42a8-b664-2956052b122f" ], "x-ms-correlation-request-id": [ - "afa9c411-54d9-4160-8382-c265af5e6555" + "8c7c6a05-1512-42a8-b664-2956052b122f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061247Z:afa9c411-54d9-4160-8382-c265af5e6555" + "WESTUS:20230217T011621Z:8c7c6a05-1512-42a8-b664-2956052b122f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3270,7 +3210,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:12:46 GMT" + "Fri, 17 Feb 2023 01:16:20 GMT" ], "Content-Length": [ "22" @@ -3286,24 +3226,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081/IotHubKeys/ServiceKey/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwODEvSW90SHViS2V5cy9TZXJ2aWNlS2V5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835/IotHubKeys/ServiceKey/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI4MzUvSW90SHViS2V5cy9TZXJ2aWNlS2V5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDctMDI=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "caa37d76-275e-4e8c-9d4b-7e6dda92bd69" + "c24c9b41-f942-4d36-9edf-c72a43dcdc62" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3318,13 +3258,13 @@ "1197" ], "x-ms-request-id": [ - "ed9c85f1-afaf-4bc4-b395-858cb813676d" + "56b14a94-74c4-4423-b86c-865a3d84ec8f" ], "x-ms-correlation-request-id": [ - "ed9c85f1-afaf-4bc4-b395-858cb813676d" + "56b14a94-74c4-4423-b86c-865a3d84ec8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061248Z:ed9c85f1-afaf-4bc4-b395-858cb813676d" + "WESTCENTRALUS:20230217T011622Z:56b14a94-74c4-4423-b86c-865a3d84ec8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3333,10 +3273,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:12:47 GMT" + "Fri, 17 Feb 2023 01:16:22 GMT" ], "Content-Length": [ - "172" + "187" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3345,25 +3285,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"T8iTDXuDnQHXIKClRYAJ8DZAdwIecaZAcWDadxHdpg0=\",\r\n \"secondaryKey\": \"oW0jEX0zv9o+1pd9mQ/jFiDYzZrwzyBKxNs0TZVhBFI=\",\r\n \"rights\": \"ServiceConnect\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/operationResults/b3NfaWRfNzBhYTM1OGMtYjcwNi00YTM3LWFjYjItMTQ3Y2M2NDZkYWIz?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZOekJoWVRNMU9HTXRZamN3TmkwMFlUTTNMV0ZqWWpJdE1UUTNZMk0yTkRaa1lXSXo/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/operationResults/aWQ9b3NfaWRfMjliOWUyYjYtZjA4NC00NTYwLTg2NzItNDVjYmM3ZWM4NjZjO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmTWpsaU9XVXlZall0WmpBNE5DMDBOVFl3TFRnMk56SXRORFZqWW1NM1pXTTROalpqTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74bddd3b-7215-4926-9e26-2b44032a56f7" + "b63f025e-28a9-4cf1-814c-3c691de59648" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3375,16 +3315,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11991" ], "x-ms-request-id": [ - "cc7a5dba-4d2e-4fa2-bdd0-14b818e65266" + "08f324fb-b08e-41e2-bf85-ecf5fcbd5316" ], "x-ms-correlation-request-id": [ - "cc7a5dba-4d2e-4fa2-bdd0-14b818e65266" + "08f324fb-b08e-41e2-bf85-ecf5fcbd5316" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061320Z:cc7a5dba-4d2e-4fa2-bdd0-14b818e65266" + "WESTCENTRALUS:20230217T011654Z:08f324fb-b08e-41e2-bf85-ecf5fcbd5316" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3393,7 +3333,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:20 GMT" + "Fri, 17 Feb 2023 01:16:54 GMT" ], "Content-Length": [ "22" @@ -3409,24 +3349,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f8510e9-59ea-4c81-9690-5f6bb1153c1f" + "5f262808-2522-4991-8d0d-ea7f124797a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3441,13 +3381,13 @@ "1199" ], "x-ms-request-id": [ - "e21b541f-42fe-4da8-a975-d62fe8209a59" + "d2f4ac37-ffa4-470c-99ca-bd8e9053d093" ], "x-ms-correlation-request-id": [ - "e21b541f-42fe-4da8-a975-d62fe8209a59" + "d2f4ac37-ffa4-470c-99ca-bd8e9053d093" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061321Z:e21b541f-42fe-4da8-a975-d62fe8209a59" + "WESTUS:20230217T011655Z:d2f4ac37-ffa4-470c-99ca-bd8e9053d093" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3456,7 +3396,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:20 GMT" + "Fri, 17 Feb 2023 01:16:55 GMT" ], "Content-Length": [ "229" @@ -3468,28 +3408,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ae008ca-1792-4b3b-b268-709c87cdf1b0" + "b0aab463-3f30-4ca8-89a9-186c05d2e88b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3501,16 +3441,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "eed74286-75fa-41df-b08c-ef037c090dbf" + "ba2d91f7-8be3-4d4b-a662-a2eb81429d0b" ], "x-ms-correlation-request-id": [ - "eed74286-75fa-41df-b08c-ef037c090dbf" + "ba2d91f7-8be3-4d4b-a662-a2eb81429d0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061321Z:eed74286-75fa-41df-b08c-ef037c090dbf" + "WESTUS:20230217T011656Z:ba2d91f7-8be3-4d4b-a662-a2eb81429d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3519,7 +3459,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:21 GMT" + "Fri, 17 Feb 2023 01:16:55 GMT" ], "Content-Length": [ "229" @@ -3531,28 +3471,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc68c77-c5d2-4e2d-ab2b-6e15e4006ab7" + "c04bcec4-1a9b-4d6e-bf61-b283fec642bb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3564,16 +3504,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "74f813c3-2aca-4335-b5c9-02b5fd784ec5" + "2d1fe387-f00e-46b6-854b-4c7658a8c3ca" ], "x-ms-correlation-request-id": [ - "74f813c3-2aca-4335-b5c9-02b5fd784ec5" + "2d1fe387-f00e-46b6-854b-4c7658a8c3ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061321Z:74f813c3-2aca-4335-b5c9-02b5fd784ec5" + "WESTUS:20230217T011656Z:2d1fe387-f00e-46b6-854b-4c7658a8c3ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3582,7 +3522,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:21 GMT" + "Fri, 17 Feb 2023 01:16:56 GMT" ], "Content-Length": [ "229" @@ -3594,28 +3534,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1757565-43c2-470a-b7a9-25a218fe1099" + "167c4376-7ad5-471a-8f01-42ad2c245937" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3627,16 +3567,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "a4f7db58-2f5e-4a46-ad80-deebe3b24fac" + "1b444a1b-646b-4a77-b4db-1d2fdf0c8be4" ], "x-ms-correlation-request-id": [ - "a4f7db58-2f5e-4a46-ad80-deebe3b24fac" + "1b444a1b-646b-4a77-b4db-1d2fdf0c8be4" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061321Z:a4f7db58-2f5e-4a46-ad80-deebe3b24fac" + "WESTUS:20230217T011657Z:1b444a1b-646b-4a77-b4db-1d2fdf0c8be4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3645,7 +3585,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:21 GMT" + "Fri, 17 Feb 2023 01:16:56 GMT" ], "Content-Length": [ "229" @@ -3657,28 +3597,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69933650-ad4c-4c6d-bf55-eddd06e8aad0" + "4a0aba35-b50d-43c5-bdb9-820a6aa148c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3690,16 +3630,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "d9c477aa-68bb-461b-95bd-5f652102b172" + "81589dff-4d01-4c00-a8e0-8cf5ce9a3c7e" ], "x-ms-correlation-request-id": [ - "d9c477aa-68bb-461b-95bd-5f652102b172" + "81589dff-4d01-4c00-a8e0-8cf5ce9a3c7e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061322Z:d9c477aa-68bb-461b-95bd-5f652102b172" + "WESTUS:20230217T011657Z:81589dff-4d01-4c00-a8e0-8cf5ce9a3c7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3708,7 +3648,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:21 GMT" + "Fri, 17 Feb 2023 01:16:57 GMT" ], "Content-Length": [ "229" @@ -3720,28 +3660,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90c2b393-e4ba-4da0-9516-15a50ab99ac9" + "653cd54a-8ee7-4051-a276-992dfb7a638a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3753,16 +3693,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-request-id": [ - "3de78a3d-b85f-44ea-b023-c156ea0dffce" + "1c86dc78-5e72-4061-9658-ad08e08ca90a" ], "x-ms-correlation-request-id": [ - "3de78a3d-b85f-44ea-b023-c156ea0dffce" + "1c86dc78-5e72-4061-9658-ad08e08ca90a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061322Z:3de78a3d-b85f-44ea-b023-c156ea0dffce" + "WESTUS:20230217T011658Z:1c86dc78-5e72-4061-9658-ad08e08ca90a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3771,7 +3711,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:22 GMT" + "Fri, 17 Feb 2023 01:16:57 GMT" ], "Content-Length": [ "229" @@ -3783,28 +3723,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ed1dc8a-a67a-4621-8a17-54dd17c2bec1" + "8c054a1c-7bb6-42cb-a0d6-6f43393982e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3816,16 +3756,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-request-id": [ - "e9d29ffd-b0f5-471b-8b83-9a69e8d8463f" + "0e11eaf1-ed65-4b94-8f18-3a741abb79fb" ], "x-ms-correlation-request-id": [ - "e9d29ffd-b0f5-471b-8b83-9a69e8d8463f" + "0e11eaf1-ed65-4b94-8f18-3a741abb79fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061322Z:e9d29ffd-b0f5-471b-8b83-9a69e8d8463f" + "WESTUS:20230217T011658Z:0e11eaf1-ed65-4b94-8f18-3a741abb79fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3834,7 +3774,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:22 GMT" + "Fri, 17 Feb 2023 01:16:58 GMT" ], "Content-Length": [ "229" @@ -3846,28 +3786,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0549b541-d9e4-4ee8-a81a-bd45dfb1aff1" + "7240f8f3-cf12-4b44-8825-3cfcdff0620d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3879,16 +3819,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-request-id": [ - "e17b81e1-5628-4b6e-bcb5-bcfb5de10f5d" + "08ee4579-708a-4152-9ced-5e69ed32b0eb" ], "x-ms-correlation-request-id": [ - "e17b81e1-5628-4b6e-bcb5-bcfb5de10f5d" + "08ee4579-708a-4152-9ced-5e69ed32b0eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061322Z:e17b81e1-5628-4b6e-bcb5-bcfb5de10f5d" + "WESTUS:20230217T011659Z:08ee4579-708a-4152-9ced-5e69ed32b0eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3897,7 +3837,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:22 GMT" + "Fri, 17 Feb 2023 01:16:58 GMT" ], "Content-Length": [ "229" @@ -3909,28 +3849,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a03c984c-9791-4df0-9e02-5d4458dac94c" + "6de33c9d-77b5-4e8d-b658-658bdfcaf097" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3942,16 +3882,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-request-id": [ - "b3cc0a20-8283-41a9-97d8-fed7f5b5a575" + "e7997de9-3378-4a40-9cca-913f6dbabc7e" ], "x-ms-correlation-request-id": [ - "b3cc0a20-8283-41a9-97d8-fed7f5b5a575" + "e7997de9-3378-4a40-9cca-913f6dbabc7e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061323Z:b3cc0a20-8283-41a9-97d8-fed7f5b5a575" + "WESTUS:20230217T011659Z:e7997de9-3378-4a40-9cca-913f6dbabc7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3960,7 +3900,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:22 GMT" + "Fri, 17 Feb 2023 01:16:59 GMT" ], "Content-Length": [ "229" @@ -3972,28 +3912,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad7a8ba5-77db-4ed9-beb7-ea3f90ecd42f" + "27d9578b-29d0-4262-9c11-0b21b1cd9e59" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4005,16 +3945,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-request-id": [ - "28f3e7f0-425a-4ea3-a1a9-fb3137b1ac6f" + "d367dd10-8e5d-427f-bcdd-e81da6055b4c" ], "x-ms-correlation-request-id": [ - "28f3e7f0-425a-4ea3-a1a9-fb3137b1ac6f" + "d367dd10-8e5d-427f-bcdd-e81da6055b4c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061323Z:28f3e7f0-425a-4ea3-a1a9-fb3137b1ac6f" + "WESTUS:20230217T011700Z:d367dd10-8e5d-427f-bcdd-e81da6055b4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4023,7 +3963,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:23 GMT" + "Fri, 17 Feb 2023 01:16:59 GMT" ], "Content-Length": [ "229" @@ -4035,28 +3975,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23d974d0-d166-4032-b61d-dc6071d2c8f1" + "fa6147c0-fb90-413e-9374-b04d426565c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4068,16 +4008,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1196" ], "x-ms-request-id": [ - "b78208a5-0b1f-44b4-b3a6-be3b8c542d8e" + "4b027638-246d-4af1-a0bd-d6f495cbe793" ], "x-ms-correlation-request-id": [ - "b78208a5-0b1f-44b4-b3a6-be3b8c542d8e" + "4b027638-246d-4af1-a0bd-d6f495cbe793" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061323Z:b78208a5-0b1f-44b4-b3a6-be3b8c542d8e" + "WESTUS:20230217T011700Z:4b027638-246d-4af1-a0bd-d6f495cbe793" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4086,7 +4026,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:23 GMT" + "Fri, 17 Feb 2023 01:17:00 GMT" ], "Content-Length": [ "229" @@ -4098,28 +4038,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c080e97c-ff91-4b68-b4bb-d84bbd5506ee" + "89484bec-3526-4ad5-92de-02eef52fe42b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4131,16 +4071,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1199" ], "x-ms-request-id": [ - "42a588f4-14e3-4845-9e0e-7b12615a0e2b" + "0ecab37c-5a45-4c93-b8f7-d73bdf721910" ], "x-ms-correlation-request-id": [ - "42a588f4-14e3-4845-9e0e-7b12615a0e2b" + "0ecab37c-5a45-4c93-b8f7-d73bdf721910" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061323Z:42a588f4-14e3-4845-9e0e-7b12615a0e2b" + "WESTUS:20230217T011701Z:0ecab37c-5a45-4c93-b8f7-d73bdf721910" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4149,7 +4089,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:23 GMT" + "Fri, 17 Feb 2023 01:17:01 GMT" ], "Content-Length": [ "229" @@ -4161,28 +4101,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6894b4b4-6503-4328-8038-4540c5873a9e" + "925f9797-1dda-491a-a23d-ff720d50a885" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4194,16 +4134,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1199" ], "x-ms-request-id": [ - "7a9284cf-79bc-4a60-9cb0-e752e2632253" + "a042f326-b7ca-4601-a9b3-4ce296df5028" ], "x-ms-correlation-request-id": [ - "7a9284cf-79bc-4a60-9cb0-e752e2632253" + "a042f326-b7ca-4601-a9b3-4ce296df5028" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061324Z:7a9284cf-79bc-4a60-9cb0-e752e2632253" + "WESTUS:20230217T011701Z:a042f326-b7ca-4601-a9b3-4ce296df5028" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4212,7 +4152,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:23 GMT" + "Fri, 17 Feb 2023 01:17:01 GMT" ], "Content-Length": [ "229" @@ -4224,28 +4164,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76d87c99-2467-4189-a8de-6477a89f61c7" + "597ff720-b6f0-46ad-a9fe-0fbc78d97793" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4257,16 +4197,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1198" ], "x-ms-request-id": [ - "4b6bf4a0-46a6-4c9b-89be-ff73d459a079" + "d06e5ce4-cc71-4403-8696-f935af1c66a9" ], "x-ms-correlation-request-id": [ - "4b6bf4a0-46a6-4c9b-89be-ff73d459a079" + "d06e5ce4-cc71-4403-8696-f935af1c66a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061324Z:4b6bf4a0-46a6-4c9b-89be-ff73d459a079" + "WESTUS:20230217T011701Z:d06e5ce4-cc71-4403-8696-f935af1c66a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4275,7 +4215,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:24 GMT" + "Fri, 17 Feb 2023 01:17:01 GMT" ], "Content-Length": [ "229" @@ -4287,28 +4227,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53bb12a6-6fc2-4274-946e-6cfd99a8ec46" + "ac4cd18a-cd51-46cf-ad9c-b60ae2aebfdc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4320,16 +4260,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1198" ], "x-ms-request-id": [ - "c7d8956a-be4b-4a28-b667-373a3ee0d0d9" + "e90ab963-2f66-48d1-a1e8-f57b7421af5e" ], "x-ms-correlation-request-id": [ - "c7d8956a-be4b-4a28-b667-373a3ee0d0d9" + "e90ab963-2f66-48d1-a1e8-f57b7421af5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061325Z:c7d8956a-be4b-4a28-b667-373a3ee0d0d9" + "WESTUS:20230217T011702Z:e90ab963-2f66-48d1-a1e8-f57b7421af5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4338,7 +4278,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:25 GMT" + "Fri, 17 Feb 2023 01:17:01 GMT" ], "Content-Length": [ "229" @@ -4350,28 +4290,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2cd1d6c-5f6c-465b-837d-15fea53ed537" + "4dc2e3d9-aefe-4550-9889-c445aae8133f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4383,16 +4323,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1199" ], "x-ms-request-id": [ - "e6ce81a5-86d4-4162-bcad-f5bc8f830163" + "faab4f2b-b459-4d79-bced-bfecfbe2f90f" ], "x-ms-correlation-request-id": [ - "e6ce81a5-86d4-4162-bcad-f5bc8f830163" + "faab4f2b-b459-4d79-bced-bfecfbe2f90f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061325Z:e6ce81a5-86d4-4162-bcad-f5bc8f830163" + "WESTUS:20230217T011703Z:faab4f2b-b459-4d79-bced-bfecfbe2f90f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4401,7 +4341,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:25 GMT" + "Fri, 17 Feb 2023 01:17:02 GMT" ], "Content-Length": [ "229" @@ -4413,28 +4353,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2152143e-849c-489a-8a7f-2c3e03b5497d" + "df72cd82-ce97-4a91-b276-0e1d3b2da9df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4446,16 +4386,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1198" ], "x-ms-request-id": [ - "134d831d-4c9f-4af5-94ee-561a05888d9f" + "bf51711c-e6f0-4dcb-82fc-92f5e5b24652" ], "x-ms-correlation-request-id": [ - "134d831d-4c9f-4af5-94ee-561a05888d9f" + "bf51711c-e6f0-4dcb-82fc-92f5e5b24652" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061326Z:134d831d-4c9f-4af5-94ee-561a05888d9f" + "WESTUS:20230217T011704Z:bf51711c-e6f0-4dcb-82fc-92f5e5b24652" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4464,7 +4404,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:26 GMT" + "Fri, 17 Feb 2023 01:17:03 GMT" ], "Content-Length": [ "229" @@ -4476,28 +4416,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83214983-2a0a-49fd-b365-75a2e6680632" + "6c8f66eb-bc95-46cf-938c-5650be7d0fe5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4509,16 +4449,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1198" ], "x-ms-request-id": [ - "140a8443-a973-4fdb-9160-fe235825e202" + "1bd62521-febb-41e0-8bb7-50ab20b4b5c8" ], "x-ms-correlation-request-id": [ - "140a8443-a973-4fdb-9160-fe235825e202" + "1bd62521-febb-41e0-8bb7-50ab20b4b5c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061326Z:140a8443-a973-4fdb-9160-fe235825e202" + "WESTUS:20230217T011704Z:1bd62521-febb-41e0-8bb7-50ab20b4b5c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4527,7 +4467,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:26 GMT" + "Fri, 17 Feb 2023 01:17:04 GMT" ], "Content-Length": [ "229" @@ -4539,28 +4479,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c415c841-fb85-47aa-afd7-195cec854818" + "9702ec96-6031-4216-a574-213ec99d8085" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4572,16 +4512,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1198" ], "x-ms-request-id": [ - "009459eb-580f-4762-bf7e-428ce6ede396" + "e20c058f-c6d9-42eb-9e08-4575be4caebf" ], "x-ms-correlation-request-id": [ - "009459eb-580f-4762-bf7e-428ce6ede396" + "e20c058f-c6d9-42eb-9e08-4575be4caebf" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061327Z:009459eb-580f-4762-bf7e-428ce6ede396" + "WESTUS:20230217T011705Z:e20c058f-c6d9-42eb-9e08-4575be4caebf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4590,7 +4530,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:26 GMT" + "Fri, 17 Feb 2023 01:17:05 GMT" ], "Content-Length": [ "229" @@ -4602,28 +4542,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "448dc5cc-55b0-4d1d-b7fe-e3c559babd4b" + "59553c75-390d-4160-8de4-e87fd453850e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4635,16 +4575,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1199" ], "x-ms-request-id": [ - "d2319c59-b5d1-4498-b3f4-e5bd7d9e13ad" + "51923b14-30e1-4177-9c63-c134707fbe5a" ], "x-ms-correlation-request-id": [ - "d2319c59-b5d1-4498-b3f4-e5bd7d9e13ad" + "51923b14-30e1-4177-9c63-c134707fbe5a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061327Z:d2319c59-b5d1-4498-b3f4-e5bd7d9e13ad" + "WESTUS:20230217T011705Z:51923b14-30e1-4177-9c63-c134707fbe5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4653,7 +4593,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:27 GMT" + "Fri, 17 Feb 2023 01:17:05 GMT" ], "Content-Length": [ "229" @@ -4665,28 +4605,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ebc8c73-4565-4f71-ac32-ffe49bd844cd" + "d706de23-3077-4237-b058-24c9202629be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4698,16 +4638,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1196" ], "x-ms-request-id": [ - "532decd0-ce23-4b32-a1d3-893401319e68" + "36d4c9fa-6460-45e3-bfd9-6d7e4b66dfd0" ], "x-ms-correlation-request-id": [ - "532decd0-ce23-4b32-a1d3-893401319e68" + "36d4c9fa-6460-45e3-bfd9-6d7e4b66dfd0" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061328Z:532decd0-ce23-4b32-a1d3-893401319e68" + "WESTUS:20230217T011706Z:36d4c9fa-6460-45e3-bfd9-6d7e4b66dfd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4716,7 +4656,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:27 GMT" + "Fri, 17 Feb 2023 01:17:06 GMT" ], "Content-Length": [ "229" @@ -4728,28 +4668,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "623d3e8e-77da-4127-ad51-9e80d29a4f8d" + "ae9b957b-30a1-47cb-93fd-8cc01c22ab1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4761,16 +4701,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1199" ], "x-ms-request-id": [ - "8c8fced7-e082-484e-a8dc-52451b0370fb" + "40e9a84f-7b04-4691-8563-73b5a4cd3b9f" ], "x-ms-correlation-request-id": [ - "8c8fced7-e082-484e-a8dc-52451b0370fb" + "40e9a84f-7b04-4691-8563-73b5a4cd3b9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061328Z:8c8fced7-e082-484e-a8dc-52451b0370fb" + "WESTUS:20230217T011707Z:40e9a84f-7b04-4691-8563-73b5a4cd3b9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4779,7 +4719,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:28 GMT" + "Fri, 17 Feb 2023 01:17:06 GMT" ], "Content-Length": [ "229" @@ -4791,28 +4731,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3008913e-e4e5-441d-b006-bb4cc8bcec12" + "6753ef66-c662-47c4-ad5f-05d8a6e74bc6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4824,16 +4764,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1199" ], "x-ms-request-id": [ - "463d3805-0802-4aca-94fc-11fed556f27d" + "c31e16ab-266e-4030-b33d-5b23fb943977" ], "x-ms-correlation-request-id": [ - "463d3805-0802-4aca-94fc-11fed556f27d" + "c31e16ab-266e-4030-b33d-5b23fb943977" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061329Z:463d3805-0802-4aca-94fc-11fed556f27d" + "WESTUS:20230217T011707Z:c31e16ab-266e-4030-b33d-5b23fb943977" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4842,7 +4782,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:28 GMT" + "Fri, 17 Feb 2023 01:17:07 GMT" ], "Content-Length": [ "229" @@ -4854,28 +4794,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5519793-cec8-4b99-8c7a-9a3bb1f17c1f" + "17258ae7-8264-4236-93ab-75b6a45fcf5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4887,16 +4827,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "1199" ], "x-ms-request-id": [ - "ec3624b7-d41e-44f0-a6a2-0ff07d5a50ee" + "a067b638-82d9-48d4-a55e-9bd1dad1344b" ], "x-ms-correlation-request-id": [ - "ec3624b7-d41e-44f0-a6a2-0ff07d5a50ee" + "a067b638-82d9-48d4-a55e-9bd1dad1344b" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061329Z:ec3624b7-d41e-44f0-a6a2-0ff07d5a50ee" + "WESTUS:20230217T011708Z:a067b638-82d9-48d4-a55e-9bd1dad1344b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4905,7 +4845,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:13:29 GMT" + "Fri, 17 Feb 2023 01:17:08 GMT" ], "Content-Length": [ "229" @@ -4917,25 +4857,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"qIX9awOSs8fzb00yn0J4R8nfS8fpVoD2ukvFNr402uw=\",\r\n \"secondaryKey\": \"uoBF1gRpXwUtYjwk10C5+D+H/hrM1ZcviWlHSjjr/t4=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/provisioningServices/ps5023/operationResults/b3NfaWRfNjIxYWYzMWYtOGNmZC00Y2E4LWFhZDktMTE1YjBkMTM5ZmNi?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDIzL29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZOakl4WVdZek1XWXRPR05tWkMwMFkyRTRMV0ZoWkRrdE1URTFZakJrTVRNNVptTmk/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/provisioningServices/ps4469/operationResults/aWQ9b3NfaWRfZGRjOWNjMTQtZTA3Yy00ZDgxLWEwYTQtOTQyZmFjNmI4Mjg2O3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0NDY5L29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmWkdSak9XTmpNVFF0WlRBM1l5MDBaRGd4TFdFd1lUUXRPVFF5Wm1Gak5tSTRNamcyTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "676f1aa6-6bff-47cc-91e9-848984ebb367" + "04c4654c-a2a2-401a-958c-3eb426d6dc6a" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4947,16 +4887,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11997" ], "x-ms-request-id": [ - "d7272225-21d6-4a81-8612-b7c4baec769a" + "3fa7ae60-b9fe-43dd-87f4-1262f3871a1a" ], "x-ms-correlation-request-id": [ - "d7272225-21d6-4a81-8612-b7c4baec769a" + "3fa7ae60-b9fe-43dd-87f4-1262f3871a1a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061401Z:d7272225-21d6-4a81-8612-b7c4baec769a" + "WESTUS:20230217T011740Z:3fa7ae60-b9fe-43dd-87f4-1262f3871a1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4965,7 +4905,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:14:01 GMT" + "Fri, 17 Feb 2023 01:17:39 GMT" ], "Content-Length": [ "22" @@ -4981,24 +4921,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3863/providers/Microsoft.Devices/IotHubs/ps3081?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzg2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwODE/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5934/providers/Microsoft.Devices/IotHubs/ps2835?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTkzNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI4MzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "817468f1-95c7-4988-845b-d664aacbfdac" + "cbccf0ba-e50d-4885-9f3f-c767d20360ad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5007,13 +4947,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfZmJhODhmZWEtZTM1My00M2M2LTk4NTctOGE2YTM0YWJkZWY2?api-version=2020-03-01&operationSource=os_ih" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfM2NiOWFhNzgtNjRjOC00NjI2LWFjYzQtMzBmZDc4ZmU4OGMwO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfZmJhODhmZWEtZTM1My00M2M2LTk4NTctOGE2YTM0YWJkZWY2?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfM2NiOWFhNzgtNjRjOC00NjI2LWFjYzQtMzBmZDc4ZmU4OGMwO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5022,13 +4962,13 @@ "14999" ], "x-ms-request-id": [ - "cbba98dc-e49c-428c-9e02-a9c4b14f6494" + "09e504dc-f8d9-446d-8de1-e944089d97c4" ], "x-ms-correlation-request-id": [ - "cbba98dc-e49c-428c-9e02-a9c4b14f6494" + "09e504dc-f8d9-446d-8de1-e944089d97c4" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061403Z:cbba98dc-e49c-428c-9e02-a9c4b14f6494" + "WESTCENTRALUS:20230217T011741Z:09e504dc-f8d9-446d-8de1-e944089d97c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5037,7 +4977,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:14:02 GMT" + "Fri, 17 Feb 2023 01:17:41 GMT" ], "Content-Length": [ "4" @@ -5053,21 +4993,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfZmJhODhmZWEtZTM1My00M2M2LTk4NTctOGE2YTM0YWJkZWY2?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWm1KaE9EaG1aV0V0WlRNMU15MDBNMk0yTFRrNE5UY3RPR0UyWVRNMFlXSmtaV1kyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfM2NiOWFhNzgtNjRjOC00NjI2LWFjYzQtMzBmZDc4ZmU4OGMwO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTTJOaU9XRmhOemd0TmpSak9DMDBOakkyTFdGall6UXRNekJtWkRjNFptVTRPR013TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "817468f1-95c7-4988-845b-d664aacbfdac" + "cbccf0ba-e50d-4885-9f3f-c767d20360ad" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5079,16 +5019,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-request-id": [ - "fa37b3fb-1b0f-4c6a-9d9a-380ae8f83dd4" + "ba7a811c-cb4c-4f8c-ae8e-6fb2b885317b" ], "x-ms-correlation-request-id": [ - "fa37b3fb-1b0f-4c6a-9d9a-380ae8f83dd4" + "ba7a811c-cb4c-4f8c-ae8e-6fb2b885317b" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061418Z:fa37b3fb-1b0f-4c6a-9d9a-380ae8f83dd4" + "WESTCENTRALUS:20230217T011756Z:ba7a811c-cb4c-4f8c-ae8e-6fb2b885317b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5097,7 +5037,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:14:17 GMT" + "Fri, 17 Feb 2023 01:17:56 GMT" ], "Content-Length": [ "22" @@ -5113,21 +5053,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfZmJhODhmZWEtZTM1My00M2M2LTk4NTctOGE2YTM0YWJkZWY2?api-version=2020-03-01&operationSource=os_ih", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWm1KaE9EaG1aV0V0WlRNMU15MDBNMk0yTFRrNE5UY3RPR0UyWVRNMFlXSmtaV1kyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2lo", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfM2NiOWFhNzgtNjRjOC00NjI2LWFjYzQtMzBmZDc4ZmU4OGMwO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTTJOaU9XRmhOemd0TmpSak9DMDBOakkyTFdGall6UXRNekJtWkRjNFptVTRPR013TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXI=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "817468f1-95c7-4988-845b-d664aacbfdac" + "cbccf0ba-e50d-4885-9f3f-c767d20360ad" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5136,7 +5076,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfZmJhODhmZWEtZTM1My00M2M2LTk4NTctOGE2YTM0YWJkZWY2?api-version=2020-03-01&operationSource=os_ih" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfM2NiOWFhNzgtNjRjOC00NjI2LWFjYzQtMzBmZDc4ZmU4OGMwO3JlZ2lvbj13ZXN0dXM%3D?api-version=2021-07-02&operationSource=other" ], "Retry-After": [ "15" @@ -5145,16 +5085,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-request-id": [ - "3124f26f-a8be-4227-a0c2-2e9a894739ec" + "7e1aea62-5c4e-4750-8f6a-cbec857d7b32" ], "x-ms-correlation-request-id": [ - "3124f26f-a8be-4227-a0c2-2e9a894739ec" + "7e1aea62-5c4e-4750-8f6a-cbec857d7b32" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061418Z:3124f26f-a8be-4227-a0c2-2e9a894739ec" + "WESTCENTRALUS:20230217T011756Z:7e1aea62-5c4e-4750-8f6a-cbec857d7b32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5163,7 +5103,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:14:17 GMT" + "Fri, 17 Feb 2023 01:17:56 GMT" ], "Expires": [ "-1" @@ -5176,24 +5116,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps3863?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzMzg2Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps5934?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzNTkzND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64db4c04-e2dc-46e9-af6d-e11ef23dd5bb" + "a4a4ae15-0701-48bb-aa92-0745b479271c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5202,7 +5142,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5211,13 +5151,13 @@ "14999" ], "x-ms-request-id": [ - "3e0b3084-0959-4933-a104-92febe6e6d39" + "e75fa711-fe9c-4670-9c4b-353c229700f9" ], "x-ms-correlation-request-id": [ - "3e0b3084-0959-4933-a104-92febe6e6d39" + "e75fa711-fe9c-4670-9c4b-353c229700f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061419Z:3e0b3084-0959-4933-a104-92febe6e6d39" + "WESTUS:20230217T011757Z:e75fa711-fe9c-4670-9c4b-353c229700f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5226,7 +5166,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:14:18 GMT" + "Fri, 17 Feb 2023 01:17:56 GMT" ], "Expires": [ "-1" @@ -5239,75 +5179,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU16UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "e3c485e2-e815-4f54-b101-f47342ca771b" - ], - "x-ms-correlation-request-id": [ - "e3c485e2-e815-4f54-b101-f47342ca771b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T061434Z:e3c485e2-e815-4f54-b101-f47342ca771b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:14:33 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5316,22 +5199,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "7e3df639-6281-48fe-a397-ccdaaf7f7fd4" + "3c4c20d8-c75f-4833-9eb0-e25fb2ab91ed" ], "x-ms-correlation-request-id": [ - "7e3df639-6281-48fe-a397-ccdaaf7f7fd4" + "3c4c20d8-c75f-4833-9eb0-e25fb2ab91ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061449Z:7e3df639-6281-48fe-a397-ccdaaf7f7fd4" + "WESTUS:20230217T011812Z:3c4c20d8-c75f-4833-9eb0-e25fb2ab91ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5340,7 +5223,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:14:49 GMT" + "Fri, 17 Feb 2023 01:18:11 GMT" ], "Expires": [ "-1" @@ -5353,75 +5236,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU16UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "eb6abf5d-1f9d-48dd-8e6c-97cea2947a3c" - ], - "x-ms-correlation-request-id": [ - "eb6abf5d-1f9d-48dd-8e6c-97cea2947a3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T061504Z:eb6abf5d-1f9d-48dd-8e6c-97cea2947a3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:15:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5430,22 +5256,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-request-id": [ - "a95d693c-ba38-46ac-8cd7-0a9e77029b08" + "236a362c-c469-4035-8e40-c7eee8605196" ], "x-ms-correlation-request-id": [ - "a95d693c-ba38-46ac-8cd7-0a9e77029b08" + "236a362c-c469-4035-8e40-c7eee8605196" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061519Z:a95d693c-ba38-46ac-8cd7-0a9e77029b08" + "WESTUS:20230217T011827Z:236a362c-c469-4035-8e40-c7eee8605196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5454,7 +5280,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:15:19 GMT" + "Fri, 17 Feb 2023 01:18:26 GMT" ], "Expires": [ "-1" @@ -5467,18 +5293,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU16UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5487,22 +5313,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-request-id": [ - "97274b04-1ec0-43ba-9c37-cdf68d37ccc7" + "ec11ed24-fbd0-4446-b738-b4a5ce77ee50" ], "x-ms-correlation-request-id": [ - "97274b04-1ec0-43ba-9c37-cdf68d37ccc7" + "ec11ed24-fbd0-4446-b738-b4a5ce77ee50" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061534Z:97274b04-1ec0-43ba-9c37-cdf68d37ccc7" + "WESTUS:20230217T011842Z:ec11ed24-fbd0-4446-b738-b4a5ce77ee50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5511,7 +5337,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:15:33 GMT" + "Fri, 17 Feb 2023 01:18:41 GMT" ], "Expires": [ "-1" @@ -5524,18 +5350,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU16UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5544,22 +5370,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-request-id": [ - "02374148-ea59-49de-b1ea-aacfb182be32" + "d4e725ec-5a0f-4797-94b4-03240e7b600d" ], "x-ms-correlation-request-id": [ - "02374148-ea59-49de-b1ea-aacfb182be32" + "d4e725ec-5a0f-4797-94b4-03240e7b600d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061549Z:02374148-ea59-49de-b1ea-aacfb182be32" + "WESTUS:20230217T011857Z:d4e725ec-5a0f-4797-94b4-03240e7b600d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5568,7 +5394,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:15:49 GMT" + "Fri, 17 Feb 2023 01:18:56 GMT" ], "Expires": [ "-1" @@ -5581,18 +5407,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU16UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5601,16 +5427,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-request-id": [ - "41ce392c-6866-439e-9238-7f3ee7a5b1b9" + "e68754eb-9caa-4501-b1da-14b19363f67c" ], "x-ms-correlation-request-id": [ - "41ce392c-6866-439e-9238-7f3ee7a5b1b9" + "e68754eb-9caa-4501-b1da-14b19363f67c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061604Z:41ce392c-6866-439e-9238-7f3ee7a5b1b9" + "WESTUS:20230217T011912Z:e68754eb-9caa-4501-b1da-14b19363f67c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5619,7 +5445,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:16:04 GMT" + "Fri, 17 Feb 2023 01:19:11 GMT" ], "Expires": [ "-1" @@ -5632,18 +5458,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM4NjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNE5qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU5MzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVNU16UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5652,16 +5478,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11994" ], "x-ms-request-id": [ - "669fd9d4-5fcc-4745-be63-46e29e3f0940" + "b9abc5c7-607b-44d0-8e1e-2d6229313e3e" ], "x-ms-correlation-request-id": [ - "669fd9d4-5fcc-4745-be63-46e29e3f0940" + "b9abc5c7-607b-44d0-8e1e-2d6229313e3e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061605Z:669fd9d4-5fcc-4745-be63-46e29e3f0940" + "WESTUS:20230217T011912Z:b9abc5c7-607b-44d0-8e1e-2d6229313e3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5670,7 +5496,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:16:04 GMT" + "Fri, 17 Feb 2023 01:19:11 GMT" ], "Expires": [ "-1" @@ -5685,11 +5511,11 @@ ], "Names": { "Test-AzIotDpsEnrollmentGroupLifeCycle": [ - "ps5023", - "ps3863", - "ps3081", - "ps425", - "ps9251" + "ps4469", + "ps5934", + "ps2835", + "ps200", + "ps453" ] }, "Variables": { diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentTests/IotDpsEnrollmentLifeCycle.json b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentTests/IotDpsEnrollmentLifeCycle.json index 442a9c191e1b..88786ee49de2 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentTests/IotDpsEnrollmentLifeCycle.json +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsEnrollmentTests/IotDpsEnrollmentLifeCycle.json @@ -4,21 +4,21 @@ "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3b12a04-1c3e-4f63-aae4-bbe0c4af9b06" + "8374dfe1-6c13-4e4a-b608-14561ed5f010" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "615f879c-3fd4-4998-b867-be86498999df" + "e26ae3a7-b2b8-4819-a304-50ba1d185f90" ], "x-ms-correlation-request-id": [ - "615f879c-3fd4-4998-b867-be86498999df" + "e26ae3a7-b2b8-4819-a304-50ba1d185f90" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063111Z:615f879c-3fd4-4998-b867-be86498999df" + "WESTUS:20230217T004833Z:e26ae3a7-b2b8-4819-a304-50ba1d185f90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:31:10 GMT" + "Fri, 17 Feb 2023 00:48:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,28 @@ "-1" ], "Content-Length": [ - "5586" + "9626" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\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 \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\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 \"2018-12-01-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 ],\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/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"roleDefinitionId\": \"d04fc6c0-fc10-4ab8-b7de-c979247c3b65\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"provisioningServiceOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-09-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations/provisioningServiceOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway EAST\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\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\": \"IotHubs/failover\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"Australia Central\"\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps2836?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzMjgzNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps4823?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzNDgyMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1872e390-b1d7-4a48-8ebd-4653827313cd" + "d8667d23-74f5-46d7-a455-0b026e376059" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -85,6 +84,7 @@ "29" ] }, + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "ed60c2ac-1ef5-49e0-88f5-1cb58c8ce7d5" + "8360126a-2b48-48a4-8d13-6153883ce1fb" ], "x-ms-correlation-request-id": [ - "ed60c2ac-1ef5-49e0-88f5-1cb58c8ce7d5" + "8360126a-2b48-48a4-8d13-6153883ce1fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063111Z:ed60c2ac-1ef5-49e0-88f5-1cb58c8ce7d5" + "WESTUS:20230217T004834Z:8360126a-2b48-48a4-8d13-6153883ce1fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:31:11 GMT" + "Fri, 17 Feb 2023 00:48:33 GMT" ], "Content-Length": [ "165" @@ -123,25 +123,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836\",\r\n \"name\": \"ps2836\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823\",\r\n \"name\": \"ps4823\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5d9cf590-ad29-42ee-8a8b-2b8ebe69c704" + "2e20361e-cdef-4d44-9c2e-d19c6b4cb2ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -151,6 +150,7 @@ "86" ] }, + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/operationResults/b3NfaWRfYmY2YzU3NDgtYWU3Mi00MjVmLTk5NTEtNTc0MjNjODQwNDE5?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/operationResults/aWQ9b3NfaWRfY2NkZTRmZDItMTcyNi00MjkyLTlhNjctY2E3MDMwMzZmMTAwO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "712cb01c-b560-438f-a3ed-5d2f44c1e255" + "8692237e-7cf7-45a4-b016-23b6e30a353e" ], "x-ms-correlation-request-id": [ - "712cb01c-b560-438f-a3ed-5d2f44c1e255" + "8692237e-7cf7-45a4-b016-23b6e30a353e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063114Z:712cb01c-b560-438f-a3ed-5d2f44c1e255" + "WESTUS:20230217T004836Z:8692237e-7cf7-45a4-b016-23b6e30a353e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,10 +183,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:31:13 GMT" + "Fri, 17 Feb 2023 00:48:35 GMT" ], "Content-Length": [ - "460" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,25 +195,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAcXz9I=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=5lkZ2A1n/7Ap4Ybze7L5+HkJWin4POCg34ijLKvI1wg=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "af3cc08b-c1c6-48ce-b5d9-2b726e07a985" + "081bc444-3e6c-4b22-ba1d-2c9912261bcd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -223,6 +222,7 @@ "503" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAAABbe/nw=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -231,22 +231,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/operationResults/b3NfaWRfM2I4NzBiZWItNmU4Ni00YTg3LWE3ODMtMGY4NjVjNGM5M2Q1?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/operationResults/aWQ9b3NfaWRfZmQxOGUwNTEtZjQ4Mi00YjMwLTgwNWYtMmQ5OWJhOTQzN2FlO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4999" + "4998" ], "x-ms-request-id": [ - "cf6d9517-e811-4fc2-8791-509c82acb715" + "0f5d0396-18d6-430a-8552-e38a32f5704c" ], "x-ms-correlation-request-id": [ - "cf6d9517-e811-4fc2-8791-509c82acb715" + "0f5d0396-18d6-430a-8552-e38a32f5704c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063533Z:cf6d9517-e811-4fc2-8791-509c82acb715" + "WESTCENTRALUS:20230217T005223Z:0f5d0396-18d6-430a-8552-e38a32f5704c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,10 +255,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:35:32 GMT" + "Fri, 17 Feb 2023 00:52:23 GMT" ], "Content-Length": [ - "731" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -267,25 +267,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXz9I=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=5lkZ2A1n/7Ap4Ybze7L5+HkJWin4POCg34ijLKvI1wg=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbe/nw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ffef84ee-57c6-4ce4-a902-d7e7ae9e7bc3" + "7a60d3bd-9eff-4328-b4b2-0542224a0adf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -295,6 +294,7 @@ "249" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -303,22 +303,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/operationResults/b3NfaWRfMDM2OTEwYTMtOWM5NC00MDNjLWIxZGItNWQzZTQxYTk5YTY0?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/operationResults/aWQ9b3NfaWRfYmNkYjJhNzgtYWNjOS00NmU3LTlhNjUtNzg4OTNjOTBiMWM2O3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4998" + "4999" ], "x-ms-request-id": [ - "14a17cc6-6a90-4999-9a1c-648efe36fbe8" + "8e21a42e-0e9c-41b0-84d1-a6d58fb55786" ], "x-ms-correlation-request-id": [ - "14a17cc6-6a90-4999-9a1c-648efe36fbe8" + "8e21a42e-0e9c-41b0-84d1-a6d58fb55786" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063615Z:14a17cc6-6a90-4999-9a1c-648efe36fbe8" + "WESTUS:20230217T005314Z:8e21a42e-0e9c-41b0-84d1-a6d58fb55786" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -327,10 +327,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:14 GMT" + "Fri, 17 Feb 2023 00:53:13 GMT" ], "Content-Length": [ - "498" + "500" ], "Content-Type": [ "application/json; charset=utf-8" @@ -339,25 +339,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/operationResults/b3NfaWRfYmY2YzU3NDgtYWU3Mi00MjVmLTk5NTEtNTc0MjNjODQwNDE5?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZlltWTJZelUzTkRndFlXVTNNaTAwTWpWbUxUazVOVEV0TlRjME1qTmpPRFF3TkRFNT9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/operationResults/aWQ9b3NfaWRfY2NkZTRmZDItMTcyNi00MjkyLTlhNjctY2E3MDMwMzZmMTAwO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmWTJOa1pUUm1aREl0TVRjeU5pMDBNamt5TFRsaE5qY3RZMkUzTURNd016Wm1NVEF3TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d9cf590-ad29-42ee-8a8b-2b8ebe69c704" + "2e20361e-cdef-4d44-9c2e-d19c6b4cb2ab" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -372,13 +372,13 @@ "11999" ], "x-ms-request-id": [ - "5ea8a5be-8cc4-4338-b03d-79c4a2764661" + "2aaa47df-7003-4643-bc20-34661bbe2002" ], "x-ms-correlation-request-id": [ - "5ea8a5be-8cc4-4338-b03d-79c4a2764661" + "2aaa47df-7003-4643-bc20-34661bbe2002" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063144Z:5ea8a5be-8cc4-4338-b03d-79c4a2764661" + "WESTUS:20230217T004906Z:2aaa47df-7003-4643-bc20-34661bbe2002" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -387,7 +387,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:31:44 GMT" + "Fri, 17 Feb 2023 00:49:05 GMT" ], "Content-Length": [ "22" @@ -403,21 +403,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d9cf590-ad29-42ee-8a8b-2b8ebe69c704" + "2e20361e-cdef-4d44-9c2e-d19c6b4cb2ab" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -432,13 +432,13 @@ "11998" ], "x-ms-request-id": [ - "40e556aa-6cfe-4d46-8237-ac1f65c7b1b5" + "12e39873-3e3d-480f-ab2a-341879b9ceb6" ], "x-ms-correlation-request-id": [ - "40e556aa-6cfe-4d46-8237-ac1f65c7b1b5" + "12e39873-3e3d-480f-ab2a-341879b9ceb6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063145Z:40e556aa-6cfe-4d46-8237-ac1f65c7b1b5" + "WESTUS:20230217T004906Z:12e39873-3e3d-480f-ab2a-341879b9ceb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -447,10 +447,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:31:44 GMT" + "Fri, 17 Feb 2023 00:49:06 GMT" ], "Content-Length": [ - "637" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -459,28 +459,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXz9I=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbe/nw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d9cf590-ad29-42ee-8a8b-2b8ebe69c704" + "2e20361e-cdef-4d44-9c2e-d19c6b4cb2ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -495,13 +495,13 @@ "11997" ], "x-ms-request-id": [ - "9bfca873-7707-43ee-89c5-16034223012b" + "ce7b6be0-62ab-4374-a80d-0ba64d4ac071" ], "x-ms-correlation-request-id": [ - "9bfca873-7707-43ee-89c5-16034223012b" + "ce7b6be0-62ab-4374-a80d-0ba64d4ac071" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063145Z:9bfca873-7707-43ee-89c5-16034223012b" + "WESTUS:20230217T004907Z:ce7b6be0-62ab-4374-a80d-0ba64d4ac071" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,10 +510,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:31:44 GMT" + "Fri, 17 Feb 2023 00:49:06 GMT" ], "Content-Length": [ - "637" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -522,28 +522,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXz9I=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbe/nw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af3cc08b-c1c6-48ce-b5d9-2b726e07a985" + "081bc444-3e6c-4b22-ba1d-2c9912261bcd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -555,16 +555,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-request-id": [ - "2d2feca0-0f19-4bbf-8b8b-bcf5fe1fdfc5" + "a3415745-2fbc-440d-8597-9e6c27cd73a0" ], "x-ms-correlation-request-id": [ - "2d2feca0-0f19-4bbf-8b8b-bcf5fe1fdfc5" + "a3415745-2fbc-440d-8597-9e6c27cd73a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063531Z:2d2feca0-0f19-4bbf-8b8b-bcf5fe1fdfc5" + "WESTCENTRALUS:20230217T005222Z:a3415745-2fbc-440d-8597-9e6c27cd73a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -573,10 +573,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:35:31 GMT" + "Fri, 17 Feb 2023 00:52:22 GMT" ], "Content-Length": [ - "637" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585,25 +585,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXz9I=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbe/nw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af3cc08b-c1c6-48ce-b5d9-2b726e07a985" + "081bc444-3e6c-4b22-ba1d-2c9912261bcd" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -615,16 +615,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-request-id": [ - "a1cc283b-a905-48cb-941e-992220215e3b" + "646583ca-33d7-4e6a-af45-0929d25171c5" ], "x-ms-correlation-request-id": [ - "a1cc283b-a905-48cb-941e-992220215e3b" + "646583ca-33d7-4e6a-af45-0929d25171c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063603Z:a1cc283b-a905-48cb-941e-992220215e3b" + "WESTCENTRALUS:20230217T005254Z:646583ca-33d7-4e6a-af45-0929d25171c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,10 +633,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:02 GMT" + "Fri, 17 Feb 2023 00:52:53 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -645,28 +645,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af3cc08b-c1c6-48ce-b5d9-2b726e07a985" + "081bc444-3e6c-4b22-ba1d-2c9912261bcd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -678,16 +678,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-request-id": [ - "b4bb35ef-16f5-43d3-9363-f00c61b93a96" + "23c703ee-87cb-45da-9088-c58b460e793f" ], "x-ms-correlation-request-id": [ - "b4bb35ef-16f5-43d3-9363-f00c61b93a96" + "23c703ee-87cb-45da-9088-c58b460e793f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063603Z:b4bb35ef-16f5-43d3-9363-f00c61b93a96" + "WESTCENTRALUS:20230217T005254Z:23c703ee-87cb-45da-9088-c58b460e793f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -696,10 +696,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:03 GMT" + "Fri, 17 Feb 2023 00:52:54 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -708,28 +708,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f795966-9660-4893-b7a2-edb580f053be" + "036805ef-8597-4a9a-873d-1bab90c84d6b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -741,16 +741,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "6abc9c73-fb5a-4fb0-a32b-74e66ed07370" + "392f37c2-235c-4a7b-8164-b4aeaf8190a5" ], "x-ms-correlation-request-id": [ - "6abc9c73-fb5a-4fb0-a32b-74e66ed07370" + "392f37c2-235c-4a7b-8164-b4aeaf8190a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063603Z:6abc9c73-fb5a-4fb0-a32b-74e66ed07370" + "WESTCENTRALUS:20230217T005255Z:392f37c2-235c-4a7b-8164-b4aeaf8190a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -759,10 +759,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:03 GMT" + "Fri, 17 Feb 2023 00:52:54 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -771,28 +771,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c30c4094-b1a2-4959-b500-9df32cf518c9" + "98187ddf-e99e-4ca5-ac98-27bfa0a81357" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -804,16 +804,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-request-id": [ - "ac1c95fe-1ee9-4676-97b9-db44bfe6dd54" + "4e9c7aef-d83b-4c8d-a7b7-19fc80693367" ], "x-ms-correlation-request-id": [ - "ac1c95fe-1ee9-4676-97b9-db44bfe6dd54" + "4e9c7aef-d83b-4c8d-a7b7-19fc80693367" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063603Z:ac1c95fe-1ee9-4676-97b9-db44bfe6dd54" + "WESTCENTRALUS:20230217T005255Z:4e9c7aef-d83b-4c8d-a7b7-19fc80693367" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -822,10 +822,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:03 GMT" + "Fri, 17 Feb 2023 00:52:55 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -834,28 +834,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f855cb9-71aa-42c5-aef2-541bca0ed98e" + "57068126-017d-4fea-95a0-fbf35419b8b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -867,16 +867,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11990" ], "x-ms-request-id": [ - "9fcd72be-a69b-4334-982e-01f9b75c9fbe" + "f2cefd98-851e-437d-a089-9954aa3e720a" ], "x-ms-correlation-request-id": [ - "9fcd72be-a69b-4334-982e-01f9b75c9fbe" + "f2cefd98-851e-437d-a089-9954aa3e720a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063604Z:9fcd72be-a69b-4334-982e-01f9b75c9fbe" + "WESTCENTRALUS:20230217T005256Z:f2cefd98-851e-437d-a089-9954aa3e720a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,10 +885,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:03 GMT" + "Fri, 17 Feb 2023 00:52:56 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -897,28 +897,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0ce143b-c65e-45a7-b892-36136bbe117d" + "53329402-8ddf-4b55-8ab0-f2c49c6fea08" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -930,16 +930,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-request-id": [ - "00f96e14-9b80-4cf5-a28c-8e03e8781f97" + "9bded152-a62a-432d-a208-88f357a292d3" ], "x-ms-correlation-request-id": [ - "00f96e14-9b80-4cf5-a28c-8e03e8781f97" + "9bded152-a62a-432d-a208-88f357a292d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063604Z:00f96e14-9b80-4cf5-a28c-8e03e8781f97" + "WESTCENTRALUS:20230217T005257Z:9bded152-a62a-432d-a208-88f357a292d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -948,10 +948,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:03 GMT" + "Fri, 17 Feb 2023 00:52:57 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -960,28 +960,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad0e88f3-e23b-4ffa-8a56-266e0d9bf1a9" + "8e3a97d1-3d85-4c94-a082-f65bdf43d8ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -993,16 +993,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-request-id": [ - "a14f7cbc-431e-4102-9984-eb455578b541" + "16f051dd-52c2-4583-a624-3b31416fde67" ], "x-ms-correlation-request-id": [ - "a14f7cbc-431e-4102-9984-eb455578b541" + "16f051dd-52c2-4583-a624-3b31416fde67" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063604Z:a14f7cbc-431e-4102-9984-eb455578b541" + "WESTCENTRALUS:20230217T005258Z:16f051dd-52c2-4583-a624-3b31416fde67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,10 +1011,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:04 GMT" + "Fri, 17 Feb 2023 00:52:57 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1023,28 +1023,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0d43f7a-a1ea-4c41-944c-a9e29d4ec929" + "a6c68986-70d2-4b28-8514-d03877056a60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1056,16 +1056,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-request-id": [ - "a7ad1e63-902d-4f61-b415-23802c57bf8e" + "1eb210c2-a375-401d-a633-999ae03ae487" ], "x-ms-correlation-request-id": [ - "a7ad1e63-902d-4f61-b415-23802c57bf8e" + "1eb210c2-a375-401d-a633-999ae03ae487" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063604Z:a7ad1e63-902d-4f61-b415-23802c57bf8e" + "WESTCENTRALUS:20230217T005258Z:1eb210c2-a375-401d-a633-999ae03ae487" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1074,10 +1074,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:04 GMT" + "Fri, 17 Feb 2023 00:52:58 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1086,28 +1086,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18f435c4-c5f3-4dff-b173-226278b5560a" + "1cd81424-7f56-4dca-bab0-4cfc5e8b8d08" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1119,16 +1119,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11992" ], "x-ms-request-id": [ - "592a0dea-0b12-4e5a-b069-c3b1a5dd9c22" + "f2ba4cd0-25c9-470b-b437-4ce8a0949e6e" ], "x-ms-correlation-request-id": [ - "592a0dea-0b12-4e5a-b069-c3b1a5dd9c22" + "f2ba4cd0-25c9-470b-b437-4ce8a0949e6e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063605Z:592a0dea-0b12-4e5a-b069-c3b1a5dd9c22" + "WESTCENTRALUS:20230217T005259Z:f2ba4cd0-25c9-470b-b437-4ce8a0949e6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1137,10 +1137,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:04 GMT" + "Fri, 17 Feb 2023 00:52:58 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1149,28 +1149,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe8a63d5-13ca-4746-a890-25ee1ed8ac1e" + "d3e21aa0-10a5-46d2-88ad-bfcbc2e6c235" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1182,16 +1182,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "94631bf5-9dea-45ec-ba0e-1a01e9cd9e55" + "2515af9d-bcdf-4714-b3b6-840a1d8db884" ], "x-ms-correlation-request-id": [ - "94631bf5-9dea-45ec-ba0e-1a01e9cd9e55" + "2515af9d-bcdf-4714-b3b6-840a1d8db884" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063605Z:94631bf5-9dea-45ec-ba0e-1a01e9cd9e55" + "WESTCENTRALUS:20230217T005300Z:2515af9d-bcdf-4714-b3b6-840a1d8db884" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1200,10 +1200,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:04 GMT" + "Fri, 17 Feb 2023 00:53:00 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1212,28 +1212,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9288de93-4b43-4404-982b-8ab25f283b34" + "0a0f1b2b-d782-484a-8ab7-e5d304d08dc4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1245,16 +1245,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11997" ], "x-ms-request-id": [ - "eeb2f700-0777-4f07-a211-624450d2a346" + "19aa32c6-ad21-42e0-90b6-d831f056e821" ], "x-ms-correlation-request-id": [ - "eeb2f700-0777-4f07-a211-624450d2a346" + "19aa32c6-ad21-42e0-90b6-d831f056e821" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063605Z:eeb2f700-0777-4f07-a211-624450d2a346" + "WESTCENTRALUS:20230217T005301Z:19aa32c6-ad21-42e0-90b6-d831f056e821" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1263,10 +1263,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:05 GMT" + "Fri, 17 Feb 2023 00:53:00 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1275,28 +1275,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f68e3df-6c90-4e70-a769-8b52ce78ea2c" + "a92f490c-6edd-466b-b621-c9043c6431b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1308,16 +1308,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11996" ], "x-ms-request-id": [ - "6014477a-3015-449c-bbf4-352bb81acc42" + "0c023df2-3949-4e64-b2fd-d926e6fbcde6" ], "x-ms-correlation-request-id": [ - "6014477a-3015-449c-bbf4-352bb81acc42" + "0c023df2-3949-4e64-b2fd-d926e6fbcde6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063605Z:6014477a-3015-449c-bbf4-352bb81acc42" + "WESTCENTRALUS:20230217T005301Z:0c023df2-3949-4e64-b2fd-d926e6fbcde6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1326,10 +1326,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:05 GMT" + "Fri, 17 Feb 2023 00:53:01 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1338,28 +1338,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62c12cee-4a88-4a4e-a675-58e3c078c429" + "5543061c-0d5d-49fb-a621-26a9fd003eef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1371,16 +1371,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-request-id": [ - "9f0ea83a-c81f-484e-9441-a30e1d1c8c7f" + "13d52508-796e-4b1a-8d21-f041c8a1188e" ], "x-ms-correlation-request-id": [ - "9f0ea83a-c81f-484e-9441-a30e1d1c8c7f" + "13d52508-796e-4b1a-8d21-f041c8a1188e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063606Z:9f0ea83a-c81f-484e-9441-a30e1d1c8c7f" + "WESTCENTRALUS:20230217T005302Z:13d52508-796e-4b1a-8d21-f041c8a1188e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,10 +1389,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:05 GMT" + "Fri, 17 Feb 2023 00:53:01 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1401,28 +1401,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9be433cf-188a-41bb-81bd-de7c72781a84" + "cf506292-048a-4487-928e-91be1803fe20" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1434,16 +1434,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11998" ], "x-ms-request-id": [ - "77e912c1-22e0-42c4-8b8a-f561ea7cc3f3" + "5660dc2d-aa59-4c18-b345-8fc66e182df1" ], "x-ms-correlation-request-id": [ - "77e912c1-22e0-42c4-8b8a-f561ea7cc3f3" + "5660dc2d-aa59-4c18-b345-8fc66e182df1" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063606Z:77e912c1-22e0-42c4-8b8a-f561ea7cc3f3" + "WESTCENTRALUS:20230217T005303Z:5660dc2d-aa59-4c18-b345-8fc66e182df1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1452,10 +1452,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:05 GMT" + "Fri, 17 Feb 2023 00:53:02 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1464,28 +1464,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc89f662-48ea-4fb8-929d-3625df21ef10" + "8b055b19-1b3c-45f6-bd95-a3b540512a68" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1497,16 +1497,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11991" ], "x-ms-request-id": [ - "e476ad4b-e8e7-4bf7-aaea-d07fdc8e2ebc" + "c3373049-498a-44ec-9b91-df0a7ede1b3a" ], "x-ms-correlation-request-id": [ - "e476ad4b-e8e7-4bf7-aaea-d07fdc8e2ebc" + "c3373049-498a-44ec-9b91-df0a7ede1b3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063606Z:e476ad4b-e8e7-4bf7-aaea-d07fdc8e2ebc" + "WESTCENTRALUS:20230217T005304Z:c3373049-498a-44ec-9b91-df0a7ede1b3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1515,10 +1515,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:06 GMT" + "Fri, 17 Feb 2023 00:53:03 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1527,28 +1527,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6917ca96-c9e7-4c71-af73-80d4d9d86edb" + "f3b68533-e7d5-4f74-b72a-2662fe84f81a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1560,16 +1560,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-request-id": [ - "bfa17fec-993f-4571-a1b6-eb03521e318b" + "7e73123f-326a-4416-b6dd-7a603125b9c8" ], "x-ms-correlation-request-id": [ - "bfa17fec-993f-4571-a1b6-eb03521e318b" + "7e73123f-326a-4416-b6dd-7a603125b9c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063607Z:bfa17fec-993f-4571-a1b6-eb03521e318b" + "WESTCENTRALUS:20230217T005304Z:7e73123f-326a-4416-b6dd-7a603125b9c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1578,10 +1578,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:06 GMT" + "Fri, 17 Feb 2023 00:53:04 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1590,28 +1590,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8281cebb-cbdb-4415-bf20-8f5c82528ac7" + "70dce1e1-539d-4a8f-857d-58f8635a2879" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1623,16 +1623,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11998" ], "x-ms-request-id": [ - "d68e5abc-26a6-42ad-943d-b9d993f430f7" + "2f4ace65-3ce3-4d42-866e-2a55089ac48c" ], "x-ms-correlation-request-id": [ - "d68e5abc-26a6-42ad-943d-b9d993f430f7" + "2f4ace65-3ce3-4d42-866e-2a55089ac48c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063607Z:d68e5abc-26a6-42ad-943d-b9d993f430f7" + "WESTUS:20230217T005305Z:2f4ace65-3ce3-4d42-866e-2a55089ac48c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1641,10 +1641,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:07 GMT" + "Fri, 17 Feb 2023 00:53:05 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1653,28 +1653,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1b02996-8f46-4858-942a-77d73302b12f" + "38b26b70-336c-4e7f-97b0-90528be65e24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1686,16 +1686,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11999" ], "x-ms-request-id": [ - "c54f8ba8-61ba-41d7-97bd-7fb569e9c82f" + "fe478629-116f-443f-b5fb-506f23a8d4f2" ], "x-ms-correlation-request-id": [ - "c54f8ba8-61ba-41d7-97bd-7fb569e9c82f" + "fe478629-116f-443f-b5fb-506f23a8d4f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063608Z:c54f8ba8-61ba-41d7-97bd-7fb569e9c82f" + "WESTUS:20230217T005306Z:fe478629-116f-443f-b5fb-506f23a8d4f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1704,10 +1704,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:07 GMT" + "Fri, 17 Feb 2023 00:53:05 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1716,28 +1716,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15d67b08-04b9-45a6-b325-13344b1b612e" + "25a6f0f3-7906-49e8-a26a-cebb38e77714" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1749,16 +1749,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11999" ], "x-ms-request-id": [ - "db8c5561-ecdd-4675-86b7-bbf89d29c69f" + "e68a6bf4-9a05-4152-a931-913cc4d67787" ], "x-ms-correlation-request-id": [ - "db8c5561-ecdd-4675-86b7-bbf89d29c69f" + "e68a6bf4-9a05-4152-a931-913cc4d67787" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063608Z:db8c5561-ecdd-4675-86b7-bbf89d29c69f" + "WESTUS:20230217T005307Z:e68a6bf4-9a05-4152-a931-913cc4d67787" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1767,10 +1767,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:08 GMT" + "Fri, 17 Feb 2023 00:53:06 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1779,28 +1779,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18790cbf-a740-4a21-a0e2-dad87cb74e1a" + "0b90b916-a461-4244-9274-1996ba034b44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1812,16 +1812,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11999" ], "x-ms-request-id": [ - "8d102123-782e-45f7-be9e-18f0954cf410" + "2d025d3b-bb79-4e0d-9e63-6424b9ac7909" ], "x-ms-correlation-request-id": [ - "8d102123-782e-45f7-be9e-18f0954cf410" + "2d025d3b-bb79-4e0d-9e63-6424b9ac7909" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063609Z:8d102123-782e-45f7-be9e-18f0954cf410" + "WESTUS:20230217T005307Z:2d025d3b-bb79-4e0d-9e63-6424b9ac7909" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1830,10 +1830,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:08 GMT" + "Fri, 17 Feb 2023 00:53:07 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1842,28 +1842,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81eeae42-3b75-47da-a78b-186d6058caa1" + "41f174e2-525c-4e40-9f06-adcf6a1f43ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1875,16 +1875,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11999" ], "x-ms-request-id": [ - "a4bc70e0-e37f-4505-b14e-f9090da8c617" + "8c7369c7-ef9c-468c-a453-9bedfa222b7d" ], "x-ms-correlation-request-id": [ - "a4bc70e0-e37f-4505-b14e-f9090da8c617" + "8c7369c7-ef9c-468c-a453-9bedfa222b7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063609Z:a4bc70e0-e37f-4505-b14e-f9090da8c617" + "WESTUS:20230217T005308Z:8c7369c7-ef9c-468c-a453-9bedfa222b7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1893,10 +1893,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:08 GMT" + "Fri, 17 Feb 2023 00:53:07 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1905,28 +1905,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "efcb706f-842a-4f3b-987b-e2f2c0753c69" + "4fd19757-b938-4112-a270-411ab996b661" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1938,16 +1938,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11999" ], "x-ms-request-id": [ - "32aeed4a-6785-4205-903d-96fc0937d134" + "5fcac8eb-e643-44c2-a2b2-7d3f0b60d4a8" ], "x-ms-correlation-request-id": [ - "32aeed4a-6785-4205-903d-96fc0937d134" + "5fcac8eb-e643-44c2-a2b2-7d3f0b60d4a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063610Z:32aeed4a-6785-4205-903d-96fc0937d134" + "WESTUS:20230217T005309Z:5fcac8eb-e643-44c2-a2b2-7d3f0b60d4a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1956,10 +1956,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:09 GMT" + "Fri, 17 Feb 2023 00:53:09 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1968,28 +1968,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6190a9a1-d1df-4d7b-b35d-da5d73c8af5a" + "f26e505d-9252-4220-a28d-0ffa0f4cbd0a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2001,16 +2001,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11999" ], "x-ms-request-id": [ - "b2abf649-d8cb-4834-b197-1fb16b33f7f6" + "182e0117-0b99-4c6f-9dea-2d907125e497" ], "x-ms-correlation-request-id": [ - "b2abf649-d8cb-4834-b197-1fb16b33f7f6" + "182e0117-0b99-4c6f-9dea-2d907125e497" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063610Z:b2abf649-d8cb-4834-b197-1fb16b33f7f6" + "WESTUS:20230217T005309Z:182e0117-0b99-4c6f-9dea-2d907125e497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2019,10 +2019,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:09 GMT" + "Fri, 17 Feb 2023 00:53:09 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2031,28 +2031,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86ca1110-459e-4ad5-a7e0-56e2337e659c" + "9b561d3b-9440-4847-a9f1-a93e75ea3e98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2064,16 +2064,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11999" ], "x-ms-request-id": [ - "d69ce012-d03c-46d7-a5a0-5f4f178a78ee" + "c2721627-1c1a-4a79-8172-c29b211ba1c5" ], "x-ms-correlation-request-id": [ - "d69ce012-d03c-46d7-a5a0-5f4f178a78ee" + "c2721627-1c1a-4a79-8172-c29b211ba1c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063611Z:d69ce012-d03c-46d7-a5a0-5f4f178a78ee" + "WESTUS:20230217T005310Z:c2721627-1c1a-4a79-8172-c29b211ba1c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2082,10 +2082,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:10 GMT" + "Fri, 17 Feb 2023 00:53:09 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2094,28 +2094,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a9901a1-2294-4cdc-b0a0-2dcbe50cfe84" + "ea4718bd-65f1-4277-9b8c-9a3d5402709f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2127,16 +2127,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11999" ], "x-ms-request-id": [ - "fbd2da17-0b41-4798-a73f-60db73352bc3" + "d8513fef-248b-4f92-b282-0e2e77c2f639" ], "x-ms-correlation-request-id": [ - "fbd2da17-0b41-4798-a73f-60db73352bc3" + "d8513fef-248b-4f92-b282-0e2e77c2f639" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063611Z:fbd2da17-0b41-4798-a73f-60db73352bc3" + "WESTUS:20230217T005311Z:d8513fef-248b-4f92-b282-0e2e77c2f639" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2145,10 +2145,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:10 GMT" + "Fri, 17 Feb 2023 00:53:10 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2157,28 +2157,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afd0b8cb-3560-43cc-9709-e754500310cb" + "49319700-d06f-454d-b880-e0306b3ddbc8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2190,16 +2190,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11999" ], "x-ms-request-id": [ - "f6124a2c-ceb6-4c4b-8c2f-5792753caf23" + "6d8e275d-fd2b-4796-8327-762b5b8793dd" ], "x-ms-correlation-request-id": [ - "f6124a2c-ceb6-4c4b-8c2f-5792753caf23" + "6d8e275d-fd2b-4796-8327-762b5b8793dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063611Z:f6124a2c-ceb6-4c4b-8c2f-5792753caf23" + "WESTUS:20230217T005311Z:6d8e275d-fd2b-4796-8327-762b5b8793dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2208,10 +2208,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:11 GMT" + "Fri, 17 Feb 2023 00:53:11 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2220,28 +2220,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27d71b37-afad-4b8e-a5fe-beac68263207" + "e6b88155-8274-4441-9f9c-5fd3e31b51bf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2253,16 +2253,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11999" ], "x-ms-request-id": [ - "508bb2b2-f02d-4ccd-9b3f-af2c70af6174" + "c49950c7-ac33-4e86-9181-11812291a997" ], "x-ms-correlation-request-id": [ - "508bb2b2-f02d-4ccd-9b3f-af2c70af6174" + "c49950c7-ac33-4e86-9181-11812291a997" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063612Z:508bb2b2-f02d-4ccd-9b3f-af2c70af6174" + "WESTUS:20230217T005312Z:c49950c7-ac33-4e86-9181-11812291a997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,10 +2271,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:11 GMT" + "Fri, 17 Feb 2023 00:53:11 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2283,28 +2283,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffef84ee-57c6-4ce4-a902-d7e7ae9e7bc3" + "7a60d3bd-9eff-4328-b4b2-0542224a0adf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2316,16 +2316,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11999" ], "x-ms-request-id": [ - "7ba3833d-b46f-4599-89b1-905b83dbff81" + "996227a5-0b9f-48ae-a40d-38a18a2096b6" ], "x-ms-correlation-request-id": [ - "7ba3833d-b46f-4599-89b1-905b83dbff81" + "996227a5-0b9f-48ae-a40d-38a18a2096b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063612Z:7ba3833d-b46f-4599-89b1-905b83dbff81" + "WESTUS:20230217T005313Z:996227a5-0b9f-48ae-a40d-38a18a2096b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2334,10 +2334,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:12 GMT" + "Fri, 17 Feb 2023 00:53:12 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2346,28 +2346,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffef84ee-57c6-4ce4-a902-d7e7ae9e7bc3" + "7a60d3bd-9eff-4328-b4b2-0542224a0adf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2379,16 +2379,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11998" ], "x-ms-request-id": [ - "db47b7b7-283f-477e-822c-4c4026f1de74" + "f5c232e3-0211-4156-a886-e44bd679fe2c" ], "x-ms-correlation-request-id": [ - "db47b7b7-283f-477e-822c-4c4026f1de74" + "f5c232e3-0211-4156-a886-e44bd679fe2c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063613Z:db47b7b7-283f-477e-822c-4c4026f1de74" + "WESTUS:20230217T005313Z:f5c232e3-0211-4156-a886-e44bd679fe2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2397,10 +2397,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:12 GMT" + "Fri, 17 Feb 2023 00:53:12 GMT" ], "Content-Length": [ - "830" + "833" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2409,25 +2409,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX05M=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps6026.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps6026.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfAfw=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps9609.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODA/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffef84ee-57c6-4ce4-a902-d7e7ae9e7bc3" + "7a60d3bd-9eff-4328-b4b2-0542224a0adf" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2439,16 +2439,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11996" ], "x-ms-request-id": [ - "7f5782a8-2b47-4277-8d18-795f5f22511d" + "af5d7595-9aaf-4e8c-9dee-69dfbf162ebb" ], "x-ms-correlation-request-id": [ - "7f5782a8-2b47-4277-8d18-795f5f22511d" + "af5d7595-9aaf-4e8c-9dee-69dfbf162ebb" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063645Z:7f5782a8-2b47-4277-8d18-795f5f22511d" + "WESTUS:20230217T005344Z:af5d7595-9aaf-4e8c-9dee-69dfbf162ebb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2457,10 +2457,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:45 GMT" + "Fri, 17 Feb 2023 00:53:44 GMT" ], "Content-Length": [ - "637" + "640" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2469,26 +2469,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX1Ck=\",\r\n \"name\": \"ps980\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps980.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023621A\"\r\n },\r\n \"resourcegroup\": \"ps2836\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfApM=\",\r\n \"name\": \"ps4877\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps4877.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D489\"\r\n },\r\n \"resourcegroup\": \"ps4823\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYwMjY/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk2MDk/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "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": [ - "ae399234-09d1-4770-941b-474b792bc7e9" + "b59c3fcc-8b09-4df5-8ad1-18063b07a0b0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2497,6 +2496,7 @@ "85" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2505,7 +2505,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfZTdmMzRhODAtYTQ3NS00OTJlLTg5ZDItOTZiNmQyMzJlMGI4?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYjc2Y2FiNjEtZDMwMC00MGYzLTk5OWItMjc4YjU5NDA1ZmE5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2514,13 +2514,13 @@ "4999" ], "x-ms-request-id": [ - "c62765f8-4b05-4afe-83ae-e72d90377c9a" + "518117a7-310d-4fc4-8ec6-1c31d197e189" ], "x-ms-correlation-request-id": [ - "c62765f8-4b05-4afe-83ae-e72d90377c9a" + "518117a7-310d-4fc4-8ec6-1c31d197e189" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063153Z:c62765f8-4b05-4afe-83ae-e72d90377c9a" + "WESTCENTRALUS:20230217T004912Z:518117a7-310d-4fc4-8ec6-1c31d197e189" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2529,10 +2529,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:31:53 GMT" + "Fri, 17 Feb 2023 00:49:11 GMT" ], "Content-Length": [ - "619" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2541,34 +2541,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026\",\r\n \"name\": \"ps6026\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2836\",\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609\",\r\n \"name\": \"ps9609\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4823\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYwMjY/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk2MDk/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAACrvzNnk=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"88SsgjixRdi/Bhxj6VVOVkZnlb/zvBstqs65guTX4Tc=\",\r\n \"secondaryKey\": \"NgmM1w8KazpMJ8tLdmAHjDLQw/65CwE619uCVQn2zo0=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x39CfEN3W5tjAvR4lBnGOYUgKM9mxQICzxUKp6rwZDI=\",\r\n \"secondaryKey\": \"6X8wvidRDLu6UAcrM4HZiTpI4DCO781PUi9tktm5xQo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"SpCJYp4Ms9oDfzy+KjSVdx0omFkC3TABAd9jBKQPV/U=\",\r\n \"secondaryKey\": \"6vkTS4I1mYDLnBayhe+9m+ljAdav+ocYjB4sWGEmXrY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"/PBdyLDDGj5/W+ttVsB2whqRn4TL4tXRsxs6xa3y4DM=\",\r\n \"secondaryKey\": \"1usFHOKssWTX6MUKGx9VMnsBoMxYybK1LOgPKZiGNDo=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"/A0Hm6CYOnqcfE1JhRUTwr35cMum3gYJgXhBtbhyUDg=\",\r\n \"secondaryKey\": \"kuicbi5m8zr7bnz+b/Osg6iDbo+KgKu/qc65wHYUmA0=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"ServiceConnect\"\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 \"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\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a6b7cde5-f9b4-42b1-8b58-9dc8a88759bd" + "bb6c92a0-79a6-4b45-a6e4-a2234c5a962a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2704" + "2790" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAADHxX9YM=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\r\n }\r\n ],\r\n \"allowedFqdnList\": [],\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 },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"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 \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2577,22 +2577,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfMjQzMDRhNzUtYzM1Ny00NWU3LTkyYzMtN2UyMDE2ZWFhNzBj?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfN2VmM2Y1NWEtYzk3ZC00MGVjLWI0ZWMtNjA4YTM0YTAzOWFlO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4998" + "4999" ], "x-ms-request-id": [ - "2460ce20-2dc9-49d0-b8ba-0572e75c0356" + "655e1869-371c-42e2-8f3c-e209a7ace2bc" ], "x-ms-correlation-request-id": [ - "2460ce20-2dc9-49d0-b8ba-0572e75c0356" + "655e1869-371c-42e2-8f3c-e209a7ace2bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063459Z:2460ce20-2dc9-49d0-b8ba-0572e75c0356" + "WESTCENTRALUS:20230217T005148Z:655e1869-371c-42e2-8f3c-e209a7ace2bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2601,10 +2601,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:34:59 GMT" + "Fri, 17 Feb 2023 00:51:48 GMT" ], "Content-Length": [ - "4128" + "4080" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2613,85 +2613,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026\",\r\n \"name\": \"ps6026\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2836\",\r\n \"etag\": \"AAAACrvzNnk=\",\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\": \"88SsgjixRdi/Bhxj6VVOVkZnlb/zvBstqs65guTX4Tc=\",\r\n \"secondaryKey\": \"NgmM1w8KazpMJ8tLdmAHjDLQw/65CwE619uCVQn2zo0=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x39CfEN3W5tjAvR4lBnGOYUgKM9mxQICzxUKp6rwZDI=\",\r\n \"secondaryKey\": \"6X8wvidRDLu6UAcrM4HZiTpI4DCO781PUi9tktm5xQo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"SpCJYp4Ms9oDfzy+KjSVdx0omFkC3TABAd9jBKQPV/U=\",\r\n \"secondaryKey\": \"6vkTS4I1mYDLnBayhe+9m+ljAdav+ocYjB4sWGEmXrY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"/PBdyLDDGj5/W+ttVsB2whqRn4TL4tXRsxs6xa3y4DM=\",\r\n \"secondaryKey\": \"1usFHOKssWTX6MUKGx9VMnsBoMxYybK1LOgPKZiGNDo=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"/A0Hm6CYOnqcfE1JhRUTwr35cMum3gYJgXhBtbhyUDg=\",\r\n \"secondaryKey\": \"kuicbi5m8zr7bnz+b/Osg6iDbo+KgKu/qc65wHYUmA0=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"5lkZ2A1n/7Ap4Ybze7L5+HkJWin4POCg34ijLKvI1wg=\",\r\n \"secondaryKey\": \"uz2Q/7QuJfSQOKr61ryi6shWKXGZ7OtUQrC3XCm4RXA=\",\r\n \"rights\": \"ServiceConnect\"\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\": \"ps6026-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps6026-8389177-1c41d45e2a.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"scaleunitsend-ce6ffd8e-fda4-456c-ad4a-3dfe143562ca-iothub\",\r\n \"PrimaryKey\": \"obZeByqEtEANI4hfKOGT8QQxb0k3SzSR209P19/UUkA=\",\r\n \"SecondaryKey\": \"M+8+roQeS//7lWuDM7I7jEZz/ovKP4IBUBMqa5i93is=\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:33:47 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:33:47 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"owner-ff3454b9-21a0-47d6-8e38-100e3f17f09b-iothub\",\r\n \"PrimaryKey\": \"2L7qGtjc1xksy8Wl1vUpC90HrdUxyw+plbQi69OyIr4=\",\r\n \"SecondaryKey\": \"90MM4nIy8SQXvs7fnyDmry/+SiLw1RswA1VdoSP9/8Y=\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:33:47 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:33:47 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"88SsgjixRdi/Bhxj6VVOVkZnlb/zvBstqs65guTX4Tc=\",\r\n \"SecondaryKey\": \"NgmM1w8KazpMJ8tLdmAHjDLQw/65CwE619uCVQn2zo0=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:33:47 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:33:47 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"x39CfEN3W5tjAvR4lBnGOYUgKM9mxQICzxUKp6rwZDI=\",\r\n \"SecondaryKey\": \"6X8wvidRDLu6UAcrM4HZiTpI4DCO781PUi9tktm5xQo=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:33:47 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:33: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 \"storageContainers\": [],\r\n \"cosmosDBSqlCollections\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609\",\r\n \"name\": \"ps9609\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4823\",\r\n \"etag\": \"AAAADHxX9YM=\",\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\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\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\": \"ps9609-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps9609-24621243-0db982301b.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"scaleunitsend-18714c53-76ab-4054-982b-290f650b9aac-iothub\",\r\n \"PrimaryKey\": \"npIb6d2slo9A8g8tioN3Y9M3rmF0MHksYg2+lXlzzEc=\",\r\n \"SecondaryKey\": \"8c2IvsEVq6r6nM+3om6TV9C0W7R3weECr08VRykQqZk=\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 00:51:05 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 00:51:05 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"owner-4d96bcc7-e103-4941-881a-3965f7ff42f2-iothub\",\r\n \"PrimaryKey\": \"NNA9S+gTRTS1gTS2jHFYg4Pmmc7C9N0qngtLdqbqw+w=\",\r\n \"SecondaryKey\": \"EJxqwPndrZ8sfJobLuQXYd6KgCB2DI95GYzpno97Jlk=\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 00:51:05 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 00:51:05 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"mNu3AvJg09e440sxtDFh+p/K7VlDOTAfMUdfdv0dAgc=\",\r\n \"SecondaryKey\": \"fjgbhTsGc9RdaS5CKBE7CsvqheBj+BBe17l18CA9k1M=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 00:51:05 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 00:51:05 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"WGoBderZmlvxoP9jlBju92u3o8ci3txbQ/7DNZtesZ8=\",\r\n \"SecondaryKey\": \"/zgkXDu5LQv6fTbSk5DG2R7SMHQOCXgzfUABIKVphNA=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 00:51:05 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 00:51:05 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 \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfZTdmMzRhODAtYTQ3NS00OTJlLTg5ZDItOTZiNmQyMzJlMGI4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRkbU16UmhPREF0WVRRM05TMDBPVEpsTFRnNVpESXRPVFppTm1ReU16SmxNR0k0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYjc2Y2FiNjEtZDMwMC00MGYzLTk5OWItMjc4YjU5NDA1ZmE5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWWpjMlkyRmlOakV0WkRNd01DMDBNR1l6TFRrNU9XSXRNamM0WWpVNU5EQTFabUU1TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae399234-09d1-4770-941b-474b792bc7e9" + "b59c3fcc-8b09-4df5-8ad1-18063b07a0b0" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "bf05cf0f-e4e6-4a7e-938d-d7f3767a7999" - ], - "x-ms-correlation-request-id": [ - "bf05cf0f-e4e6-4a7e-938d-d7f3767a7999" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T063224Z:bf05cf0f-e4e6-4a7e-938d-d7f3767a7999" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:32:23 GMT" - ], - "Content-Length": [ - "20" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfZTdmMzRhODAtYTQ3NS00OTJlLTg5ZDItOTZiNmQyMzJlMGI4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRkbU16UmhPREF0WVRRM05TMDBPVEpsTFRnNVpESXRPVFppTm1ReU16SmxNR0k0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ae399234-09d1-4770-941b-474b792bc7e9" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2703,16 +2643,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "e397b5e9-4fa3-4220-b34f-50eb56707a19" + "f6652417-5a0f-416a-8225-0732f738d09c" ], "x-ms-correlation-request-id": [ - "e397b5e9-4fa3-4220-b34f-50eb56707a19" + "f6652417-5a0f-416a-8225-0732f738d09c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063254Z:e397b5e9-4fa3-4220-b34f-50eb56707a19" + "WESTCENTRALUS:20230217T004942Z:f6652417-5a0f-416a-8225-0732f738d09c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2721,7 +2661,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:32:54 GMT" + "Fri, 17 Feb 2023 00:49:41 GMT" ], "Content-Length": [ "20" @@ -2737,21 +2677,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfZTdmMzRhODAtYTQ3NS00OTJlLTg5ZDItOTZiNmQyMzJlMGI4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRkbU16UmhPREF0WVRRM05TMDBPVEpsTFRnNVpESXRPVFppTm1ReU16SmxNR0k0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYjc2Y2FiNjEtZDMwMC00MGYzLTk5OWItMjc4YjU5NDA1ZmE5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWWpjMlkyRmlOakV0WkRNd01DMDBNR1l6TFRrNU9XSXRNamM0WWpVNU5EQTFabUU1TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae399234-09d1-4770-941b-474b792bc7e9" + "b59c3fcc-8b09-4df5-8ad1-18063b07a0b0" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2763,16 +2703,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "f74c115d-b025-4dfb-90de-2ddfbed3264b" + "7cdc9001-74d6-4104-9ce1-e8f4843aab15" ], "x-ms-correlation-request-id": [ - "f74c115d-b025-4dfb-90de-2ddfbed3264b" + "7cdc9001-74d6-4104-9ce1-e8f4843aab15" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063324Z:f74c115d-b025-4dfb-90de-2ddfbed3264b" + "WESTCENTRALUS:20230217T005012Z:7cdc9001-74d6-4104-9ce1-e8f4843aab15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2781,7 +2721,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:33:23 GMT" + "Fri, 17 Feb 2023 00:50:12 GMT" ], "Content-Length": [ "20" @@ -2797,21 +2737,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfZTdmMzRhODAtYTQ3NS00OTJlLTg5ZDItOTZiNmQyMzJlMGI4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRkbU16UmhPREF0WVRRM05TMDBPVEpsTFRnNVpESXRPVFppTm1ReU16SmxNR0k0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYjc2Y2FiNjEtZDMwMC00MGYzLTk5OWItMjc4YjU5NDA1ZmE5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWWpjMlkyRmlOakV0WkRNd01DMDBNR1l6TFRrNU9XSXRNamM0WWpVNU5EQTFabUU1TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae399234-09d1-4770-941b-474b792bc7e9" + "b59c3fcc-8b09-4df5-8ad1-18063b07a0b0" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2823,16 +2763,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "b61d3ffb-5f81-4d8a-9878-8e9ff07041f4" + "9a4bbb09-dc93-4658-9740-12f1345488e7" ], "x-ms-correlation-request-id": [ - "b61d3ffb-5f81-4d8a-9878-8e9ff07041f4" + "9a4bbb09-dc93-4658-9740-12f1345488e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063354Z:b61d3ffb-5f81-4d8a-9878-8e9ff07041f4" + "WESTCENTRALUS:20230217T005042Z:9a4bbb09-dc93-4658-9740-12f1345488e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2841,7 +2781,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:33:54 GMT" + "Fri, 17 Feb 2023 00:50:42 GMT" ], "Content-Length": [ "20" @@ -2857,21 +2797,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfZTdmMzRhODAtYTQ3NS00OTJlLTg5ZDItOTZiNmQyMzJlMGI4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRkbU16UmhPREF0WVRRM05TMDBPVEpsTFRnNVpESXRPVFppTm1ReU16SmxNR0k0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYjc2Y2FiNjEtZDMwMC00MGYzLTk5OWItMjc4YjU5NDA1ZmE5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWWpjMlkyRmlOakV0WkRNd01DMDBNR1l6TFRrNU9XSXRNamM0WWpVNU5EQTFabUU1TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae399234-09d1-4770-941b-474b792bc7e9" + "b59c3fcc-8b09-4df5-8ad1-18063b07a0b0" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2883,16 +2823,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "efab0305-8b74-42f7-8caf-933583e69432" + "a05e6196-7969-464b-96b1-f113e8684ff2" ], "x-ms-correlation-request-id": [ - "efab0305-8b74-42f7-8caf-933583e69432" + "a05e6196-7969-464b-96b1-f113e8684ff2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063425Z:efab0305-8b74-42f7-8caf-933583e69432" + "WESTCENTRALUS:20230217T005112Z:a05e6196-7969-464b-96b1-f113e8684ff2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2901,7 +2841,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:34:24 GMT" + "Fri, 17 Feb 2023 00:51:12 GMT" ], "Content-Length": [ "20" @@ -2917,21 +2857,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfZTdmMzRhODAtYTQ3NS00OTJlLTg5ZDItOTZiNmQyMzJlMGI4?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWlRkbU16UmhPREF0WVRRM05TMDBPVEpsTFRnNVpESXRPVFppTm1ReU16SmxNR0k0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYjc2Y2FiNjEtZDMwMC00MGYzLTk5OWItMjc4YjU5NDA1ZmE5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWWpjMlkyRmlOakV0WkRNd01DMDBNR1l6TFRrNU9XSXRNamM0WWpVNU5EQTFabUU1TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae399234-09d1-4770-941b-474b792bc7e9" + "b59c3fcc-8b09-4df5-8ad1-18063b07a0b0" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2943,16 +2883,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "9ae31c6b-8046-4a09-a6c9-534196d4791b" + "7ea9f19f-12a9-4739-bf48-52028c629b34" ], "x-ms-correlation-request-id": [ - "9ae31c6b-8046-4a09-a6c9-534196d4791b" + "7ea9f19f-12a9-4739-bf48-52028c629b34" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063455Z:9ae31c6b-8046-4a09-a6c9-534196d4791b" + "WESTCENTRALUS:20230217T005142Z:7ea9f19f-12a9-4739-bf48-52028c629b34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2961,7 +2901,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:34:54 GMT" + "Fri, 17 Feb 2023 00:51:42 GMT" ], "Content-Length": [ "22" @@ -2977,21 +2917,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYwMjY/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk2MDk/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae399234-09d1-4770-941b-474b792bc7e9" + "b59c3fcc-8b09-4df5-8ad1-18063b07a0b0" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3003,16 +2943,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "1e2f9822-53b4-4469-8ef0-b155ba0dff49" + "493a2a9e-40a7-4df3-ad3c-8ae0131b6787" ], "x-ms-correlation-request-id": [ - "1e2f9822-53b4-4469-8ef0-b155ba0dff49" + "493a2a9e-40a7-4df3-ad3c-8ae0131b6787" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063455Z:1e2f9822-53b4-4469-8ef0-b155ba0dff49" + "WESTCENTRALUS:20230217T005143Z:493a2a9e-40a7-4df3-ad3c-8ae0131b6787" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3021,10 +2961,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:34:55 GMT" + "Fri, 17 Feb 2023 00:51:42 GMT" ], "Content-Length": [ - "1487" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3033,28 +2973,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026\",\r\n \"name\": \"ps6026\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2836\",\r\n \"etag\": \"AAAACrvzNnk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6026.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6026\",\r\n \"endpoint\": \"sb://iothub-ns-ps6026-8389177-1c41d45e2a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609\",\r\n \"name\": \"ps9609\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4823\",\r\n \"etag\": \"AAAADHxX9YM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9609.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9609\",\r\n \"endpoint\": \"sb://iothub-ns-ps9609-24621243-0db982301b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T00:49:11.25Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYwMjY/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk2MDk/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae399234-09d1-4770-941b-474b792bc7e9" + "b59c3fcc-8b09-4df5-8ad1-18063b07a0b0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3066,16 +3006,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-request-id": [ - "acdc6522-010b-4a39-b7a7-533a582c92f3" + "8da7fd14-8abc-4586-ae6d-5af957cf553c" ], "x-ms-correlation-request-id": [ - "acdc6522-010b-4a39-b7a7-533a582c92f3" + "8da7fd14-8abc-4586-ae6d-5af957cf553c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063456Z:acdc6522-010b-4a39-b7a7-533a582c92f3" + "WESTCENTRALUS:20230217T005144Z:8da7fd14-8abc-4586-ae6d-5af957cf553c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3084,10 +3024,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:34:56 GMT" + "Fri, 17 Feb 2023 00:51:43 GMT" ], "Content-Length": [ - "1487" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3096,28 +3036,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026\",\r\n \"name\": \"ps6026\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2836\",\r\n \"etag\": \"AAAACrvzNnk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6026.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6026\",\r\n \"endpoint\": \"sb://iothub-ns-ps6026-8389177-1c41d45e2a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609\",\r\n \"name\": \"ps9609\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4823\",\r\n \"etag\": \"AAAADHxX9YM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9609.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9609\",\r\n \"endpoint\": \"sb://iothub-ns-ps9609-24621243-0db982301b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T00:49:11.25Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYwMjY/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk2MDk/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6b7cde5-f9b4-42b1-8b58-9dc8a88759bd" + "bb6c92a0-79a6-4b45-a6e4-a2234c5a962a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3129,16 +3069,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-request-id": [ - "6f184485-3a8e-4a46-b788-38a4be314467" + "7546a404-47f3-4ccf-8009-b853e0b4e94e" ], "x-ms-correlation-request-id": [ - "6f184485-3a8e-4a46-b788-38a4be314467" + "7546a404-47f3-4ccf-8009-b853e0b4e94e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063456Z:6f184485-3a8e-4a46-b788-38a4be314467" + "WESTCENTRALUS:20230217T005145Z:7546a404-47f3-4ccf-8009-b853e0b4e94e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3147,10 +3087,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:34:56 GMT" + "Fri, 17 Feb 2023 00:51:44 GMT" ], "Content-Length": [ - "1487" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3159,25 +3099,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026\",\r\n \"name\": \"ps6026\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2836\",\r\n \"etag\": \"AAAACrvzNnk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6026.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6026\",\r\n \"endpoint\": \"sb://iothub-ns-ps6026-8389177-1c41d45e2a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609\",\r\n \"name\": \"ps9609\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4823\",\r\n \"etag\": \"AAAADHxX9YM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9609.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9609\",\r\n \"endpoint\": \"sb://iothub-ns-ps9609-24621243-0db982301b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T00:49:11.25Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYwMjY/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk2MDk/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6b7cde5-f9b4-42b1-8b58-9dc8a88759bd" + "bb6c92a0-79a6-4b45-a6e4-a2234c5a962a" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3189,16 +3129,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-request-id": [ - "b9f1ed23-fd94-4b5f-a3f8-78049c021ace" + "3692625c-c4e1-4b06-8fe3-b4a38e85297f" ], "x-ms-correlation-request-id": [ - "b9f1ed23-fd94-4b5f-a3f8-78049c021ace" + "3692625c-c4e1-4b06-8fe3-b4a38e85297f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063530Z:b9f1ed23-fd94-4b5f-a3f8-78049c021ace" + "WESTCENTRALUS:20230217T005220Z:3692625c-c4e1-4b06-8fe3-b4a38e85297f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3207,10 +3147,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:35:30 GMT" + "Fri, 17 Feb 2023 00:52:19 GMT" ], "Content-Length": [ - "1487" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3219,28 +3159,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026\",\r\n \"name\": \"ps6026\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2836\",\r\n \"etag\": \"AAAACrv0xUg=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6026.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6026\",\r\n \"endpoint\": \"sb://iothub-ns-ps6026-8389177-1c41d45e2a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609\",\r\n \"name\": \"ps9609\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4823\",\r\n \"etag\": \"AAAADHxX9uc=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps9609.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps9609\",\r\n \"endpoint\": \"sb://iothub-ns-ps9609-24621243-0db982301b.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T00:49:11.25Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYwMjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk2MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6b7cde5-f9b4-42b1-8b58-9dc8a88759bd" + "bb6c92a0-79a6-4b45-a6e4-a2234c5a962a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3255,13 +3195,13 @@ "1199" ], "x-ms-request-id": [ - "8b446b41-1668-43fb-a39f-a3bdbacc1036" + "1f6d4e63-cd3f-486c-aa7b-236293538e5e" ], "x-ms-correlation-request-id": [ - "8b446b41-1668-43fb-a39f-a3bdbacc1036" + "1f6d4e63-cd3f-486c-aa7b-236293538e5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063457Z:8b446b41-1668-43fb-a39f-a3bdbacc1036" + "WESTCENTRALUS:20230217T005146Z:1f6d4e63-cd3f-486c-aa7b-236293538e5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3270,7 +3210,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:34:56 GMT" + "Fri, 17 Feb 2023 00:51:45 GMT" ], "Content-Length": [ "905" @@ -3282,28 +3222,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"88SsgjixRdi/Bhxj6VVOVkZnlb/zvBstqs65guTX4Tc=\",\r\n \"secondaryKey\": \"NgmM1w8KazpMJ8tLdmAHjDLQw/65CwE619uCVQn2zo0=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x39CfEN3W5tjAvR4lBnGOYUgKM9mxQICzxUKp6rwZDI=\",\r\n \"secondaryKey\": \"6X8wvidRDLu6UAcrM4HZiTpI4DCO781PUi9tktm5xQo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"SpCJYp4Ms9oDfzy+KjSVdx0omFkC3TABAd9jBKQPV/U=\",\r\n \"secondaryKey\": \"6vkTS4I1mYDLnBayhe+9m+ljAdav+ocYjB4sWGEmXrY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"/PBdyLDDGj5/W+ttVsB2whqRn4TL4tXRsxs6xa3y4DM=\",\r\n \"secondaryKey\": \"1usFHOKssWTX6MUKGx9VMnsBoMxYybK1LOgPKZiGNDo=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"/A0Hm6CYOnqcfE1JhRUTwr35cMum3gYJgXhBtbhyUDg=\",\r\n \"secondaryKey\": \"kuicbi5m8zr7bnz+b/Osg6iDbo+KgKu/qc65wHYUmA0=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYwMjYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk2MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6b7cde5-f9b4-42b1-8b58-9dc8a88759bd" + "bb6c92a0-79a6-4b45-a6e4-a2234c5a962a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3318,13 +3258,13 @@ "1198" ], "x-ms-request-id": [ - "0929cea5-9dc8-450c-8469-8b5de36e4659" + "4b7fb704-6e1a-4502-b95b-3f3b52b32b9c" ], "x-ms-correlation-request-id": [ - "0929cea5-9dc8-450c-8469-8b5de36e4659" + "4b7fb704-6e1a-4502-b95b-3f3b52b32b9c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063530Z:0929cea5-9dc8-450c-8469-8b5de36e4659" + "WESTCENTRALUS:20230217T005221Z:4b7fb704-6e1a-4502-b95b-3f3b52b32b9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3333,10 +3273,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:35:30 GMT" + "Fri, 17 Feb 2023 00:52:20 GMT" ], "Content-Length": [ - "1078" + "1093" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3345,25 +3285,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"88SsgjixRdi/Bhxj6VVOVkZnlb/zvBstqs65guTX4Tc=\",\r\n \"secondaryKey\": \"NgmM1w8KazpMJ8tLdmAHjDLQw/65CwE619uCVQn2zo0=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"x39CfEN3W5tjAvR4lBnGOYUgKM9mxQICzxUKp6rwZDI=\",\r\n \"secondaryKey\": \"6X8wvidRDLu6UAcrM4HZiTpI4DCO781PUi9tktm5xQo=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"SpCJYp4Ms9oDfzy+KjSVdx0omFkC3TABAd9jBKQPV/U=\",\r\n \"secondaryKey\": \"6vkTS4I1mYDLnBayhe+9m+ljAdav+ocYjB4sWGEmXrY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"/PBdyLDDGj5/W+ttVsB2whqRn4TL4tXRsxs6xa3y4DM=\",\r\n \"secondaryKey\": \"1usFHOKssWTX6MUKGx9VMnsBoMxYybK1LOgPKZiGNDo=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"/A0Hm6CYOnqcfE1JhRUTwr35cMum3gYJgXhBtbhyUDg=\",\r\n \"secondaryKey\": \"kuicbi5m8zr7bnz+b/Osg6iDbo+KgKu/qc65wHYUmA0=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"5lkZ2A1n/7Ap4Ybze7L5+HkJWin4POCg34ijLKvI1wg=\",\r\n \"secondaryKey\": \"uz2Q/7QuJfSQOKr61ryi6shWKXGZ7OtUQrC3XCm4RXA=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfMjQzMDRhNzUtYzM1Ny00NWU3LTkyYzMtN2UyMDE2ZWFhNzBj?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTWpRek1EUmhOelV0WXpNMU55MDBOV1UzTFRreVl6TXROMlV5TURFMlpXRmhOekJqP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfN2VmM2Y1NWEtYzk3ZC00MGVjLWI0ZWMtNjA4YTM0YTAzOWFlO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTjJWbU0yWTFOV0V0WXprM1pDMDBNR1ZqTFdJMFpXTXROakE0WVRNMFlUQXpPV0ZsTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6b7cde5-f9b4-42b1-8b58-9dc8a88759bd" + "bb6c92a0-79a6-4b45-a6e4-a2234c5a962a" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3375,16 +3315,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-request-id": [ - "27bd2bf1-b714-4ac9-9c30-2450cb914eb3" + "570f7c8e-e8b6-4f02-8d18-4e9a115badd3" ], "x-ms-correlation-request-id": [ - "27bd2bf1-b714-4ac9-9c30-2450cb914eb3" + "570f7c8e-e8b6-4f02-8d18-4e9a115badd3" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063530Z:27bd2bf1-b714-4ac9-9c30-2450cb914eb3" + "WESTCENTRALUS:20230217T005219Z:570f7c8e-e8b6-4f02-8d18-4e9a115badd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3393,7 +3333,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:35:30 GMT" + "Fri, 17 Feb 2023 00:52:18 GMT" ], "Content-Length": [ "22" @@ -3409,24 +3349,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026/IotHubKeys/ServiceKey/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYwMjYvSW90SHViS2V5cy9TZXJ2aWNlS2V5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609/IotHubKeys/ServiceKey/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk2MDkvSW90SHViS2V5cy9TZXJ2aWNlS2V5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDctMDI=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0d7e2e5-ecb8-457c-b387-d8da75854e4b" + "88d6965c-983f-4275-a4ff-57ad5141c8dc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3438,16 +3378,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "6de65fc8-f777-4061-80fb-d1da013b44aa" + "35a2b4e3-9c1a-431c-a7c9-b9dd149ff563" ], "x-ms-correlation-request-id": [ - "6de65fc8-f777-4061-80fb-d1da013b44aa" + "35a2b4e3-9c1a-431c-a7c9-b9dd149ff563" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063530Z:6de65fc8-f777-4061-80fb-d1da013b44aa" + "WESTCENTRALUS:20230217T005222Z:35a2b4e3-9c1a-431c-a7c9-b9dd149ff563" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3456,10 +3396,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:35:30 GMT" + "Fri, 17 Feb 2023 00:52:22 GMT" ], "Content-Length": [ - "172" + "187" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3468,25 +3408,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"5lkZ2A1n/7Ap4Ybze7L5+HkJWin4POCg34ijLKvI1wg=\",\r\n \"secondaryKey\": \"uz2Q/7QuJfSQOKr61ryi6shWKXGZ7OtUQrC3XCm4RXA=\",\r\n \"rights\": \"ServiceConnect\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/operationResults/b3NfaWRfM2I4NzBiZWItNmU4Ni00YTg3LWE3ODMtMGY4NjVjNGM5M2Q1?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZk0ySTROekJpWldJdE5tVTROaTAwWVRnM0xXRTNPRE10TUdZNE5qVmpOR001TTJRMT9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/operationResults/aWQ9b3NfaWRfZmQxOGUwNTEtZjQ4Mi00YjMwLTgwNWYtMmQ5OWJhOTQzN2FlO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmWm1ReE9HVXdOVEV0WmpRNE1pMDBZak13TFRnd05XWXRNbVE1T1dKaE9UUXpOMkZsTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af3cc08b-c1c6-48ce-b5d9-2b726e07a985" + "081bc444-3e6c-4b22-ba1d-2c9912261bcd" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3498,16 +3438,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-request-id": [ - "b9f9961d-4ded-4428-96b0-4278277c31b9" + "6bbf1bc0-d8b2-41ff-a090-87632e121470" ], "x-ms-correlation-request-id": [ - "b9f9961d-4ded-4428-96b0-4278277c31b9" + "6bbf1bc0-d8b2-41ff-a090-87632e121470" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063603Z:b9f9961d-4ded-4428-96b0-4278277c31b9" + "WESTCENTRALUS:20230217T005254Z:6bbf1bc0-d8b2-41ff-a090-87632e121470" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3516,7 +3456,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:02 GMT" + "Fri, 17 Feb 2023 00:52:53 GMT" ], "Content-Length": [ "22" @@ -3532,24 +3472,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f795966-9660-4893-b7a2-edb580f053be" + "036805ef-8597-4a9a-873d-1bab90c84d6b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3564,13 +3504,13 @@ "1199" ], "x-ms-request-id": [ - "cf12c4d1-2c2c-4add-85b6-191ff7be64be" + "70c8577d-7f54-444f-9756-d0be1f837922" ], "x-ms-correlation-request-id": [ - "cf12c4d1-2c2c-4add-85b6-191ff7be64be" + "70c8577d-7f54-444f-9756-d0be1f837922" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063603Z:cf12c4d1-2c2c-4add-85b6-191ff7be64be" + "WESTCENTRALUS:20230217T005255Z:70c8577d-7f54-444f-9756-d0be1f837922" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3579,7 +3519,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:03 GMT" + "Fri, 17 Feb 2023 00:52:54 GMT" ], "Content-Length": [ "229" @@ -3591,28 +3531,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c30c4094-b1a2-4959-b500-9df32cf518c9" + "98187ddf-e99e-4ca5-ac98-27bfa0a81357" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3624,16 +3564,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "c360ee0b-2a51-4698-b4ce-d0dbfa642161" + "21f36f8e-a44e-4248-ac55-ba95a17358d6" ], "x-ms-correlation-request-id": [ - "c360ee0b-2a51-4698-b4ce-d0dbfa642161" + "21f36f8e-a44e-4248-ac55-ba95a17358d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063604Z:c360ee0b-2a51-4698-b4ce-d0dbfa642161" + "WESTCENTRALUS:20230217T005256Z:21f36f8e-a44e-4248-ac55-ba95a17358d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3642,7 +3582,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:03 GMT" + "Fri, 17 Feb 2023 00:52:56 GMT" ], "Content-Length": [ "229" @@ -3654,28 +3594,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f855cb9-71aa-42c5-aef2-541bca0ed98e" + "57068126-017d-4fea-95a0-fbf35419b8b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3687,16 +3627,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "3a03d5bb-8110-4556-8329-55667c614342" + "92231dba-2f5f-4a14-ae45-d0f5d7286b18" ], "x-ms-correlation-request-id": [ - "3a03d5bb-8110-4556-8329-55667c614342" + "92231dba-2f5f-4a14-ae45-d0f5d7286b18" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063604Z:3a03d5bb-8110-4556-8329-55667c614342" + "WESTCENTRALUS:20230217T005256Z:92231dba-2f5f-4a14-ae45-d0f5d7286b18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3705,7 +3645,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:03 GMT" + "Fri, 17 Feb 2023 00:52:56 GMT" ], "Content-Length": [ "229" @@ -3717,28 +3657,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0ce143b-c65e-45a7-b892-36136bbe117d" + "53329402-8ddf-4b55-8ab0-f2c49c6fea08" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3750,16 +3690,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "1fe3fc85-7280-4263-97bc-4067263f4122" + "78c96b3e-1149-4a69-af44-a555259c89f4" ], "x-ms-correlation-request-id": [ - "1fe3fc85-7280-4263-97bc-4067263f4122" + "78c96b3e-1149-4a69-af44-a555259c89f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063604Z:1fe3fc85-7280-4263-97bc-4067263f4122" + "WESTCENTRALUS:20230217T005257Z:78c96b3e-1149-4a69-af44-a555259c89f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3768,7 +3708,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:04 GMT" + "Fri, 17 Feb 2023 00:52:57 GMT" ], "Content-Length": [ "229" @@ -3780,28 +3720,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad0e88f3-e23b-4ffa-8a56-266e0d9bf1a9" + "8e3a97d1-3d85-4c94-a082-f65bdf43d8ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3813,16 +3753,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "aca3ad3e-4507-488d-9b6a-c6ed8c9a14c9" + "82e95123-5600-4377-94ed-117b0f537d62" ], "x-ms-correlation-request-id": [ - "aca3ad3e-4507-488d-9b6a-c6ed8c9a14c9" + "82e95123-5600-4377-94ed-117b0f537d62" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063604Z:aca3ad3e-4507-488d-9b6a-c6ed8c9a14c9" + "WESTCENTRALUS:20230217T005258Z:82e95123-5600-4377-94ed-117b0f537d62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3831,7 +3771,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:04 GMT" + "Fri, 17 Feb 2023 00:52:57 GMT" ], "Content-Length": [ "229" @@ -3843,28 +3783,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0d43f7a-a1ea-4c41-944c-a9e29d4ec929" + "a6c68986-70d2-4b28-8514-d03877056a60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3876,16 +3816,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-request-id": [ - "1b43b208-d6f8-4169-9888-5c25bcced6d7" + "8cda9ee9-137c-4f45-b1d7-157fe247728d" ], "x-ms-correlation-request-id": [ - "1b43b208-d6f8-4169-9888-5c25bcced6d7" + "8cda9ee9-137c-4f45-b1d7-157fe247728d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063605Z:1b43b208-d6f8-4169-9888-5c25bcced6d7" + "WESTCENTRALUS:20230217T005259Z:8cda9ee9-137c-4f45-b1d7-157fe247728d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3894,7 +3834,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:04 GMT" + "Fri, 17 Feb 2023 00:52:58 GMT" ], "Content-Length": [ "229" @@ -3906,28 +3846,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18f435c4-c5f3-4dff-b173-226278b5560a" + "1cd81424-7f56-4dca-bab0-4cfc5e8b8d08" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3939,16 +3879,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-request-id": [ - "f9102b28-8bfd-4fae-bc8a-f49e66feeab5" + "b69e028b-605a-444e-b843-500e5475acbf" ], "x-ms-correlation-request-id": [ - "f9102b28-8bfd-4fae-bc8a-f49e66feeab5" + "b69e028b-605a-444e-b843-500e5475acbf" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063605Z:f9102b28-8bfd-4fae-bc8a-f49e66feeab5" + "WESTCENTRALUS:20230217T005259Z:b69e028b-605a-444e-b843-500e5475acbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3957,7 +3897,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:04 GMT" + "Fri, 17 Feb 2023 00:52:59 GMT" ], "Content-Length": [ "229" @@ -3969,28 +3909,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe8a63d5-13ca-4746-a890-25ee1ed8ac1e" + "d3e21aa0-10a5-46d2-88ad-bfcbc2e6c235" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4002,16 +3942,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-request-id": [ - "72d86d4e-82f4-4351-8eea-6a42270dcf64" + "15d6a516-24e0-4400-a85b-81880283095a" ], "x-ms-correlation-request-id": [ - "72d86d4e-82f4-4351-8eea-6a42270dcf64" + "15d6a516-24e0-4400-a85b-81880283095a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063605Z:72d86d4e-82f4-4351-8eea-6a42270dcf64" + "WESTCENTRALUS:20230217T005300Z:15d6a516-24e0-4400-a85b-81880283095a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4020,7 +3960,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:05 GMT" + "Fri, 17 Feb 2023 00:53:00 GMT" ], "Content-Length": [ "229" @@ -4032,28 +3972,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9288de93-4b43-4404-982b-8ab25f283b34" + "0a0f1b2b-d782-484a-8ab7-e5d304d08dc4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4065,16 +4005,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-request-id": [ - "8bb0f42e-f0b3-4c63-b1da-ba388b255a58" + "8d523c54-7667-4ce7-af76-7891f27e37af" ], "x-ms-correlation-request-id": [ - "8bb0f42e-f0b3-4c63-b1da-ba388b255a58" + "8d523c54-7667-4ce7-af76-7891f27e37af" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063605Z:8bb0f42e-f0b3-4c63-b1da-ba388b255a58" + "WESTCENTRALUS:20230217T005301Z:8d523c54-7667-4ce7-af76-7891f27e37af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4083,7 +4023,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:05 GMT" + "Fri, 17 Feb 2023 00:53:00 GMT" ], "Content-Length": [ "229" @@ -4095,28 +4035,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f68e3df-6c90-4e70-a769-8b52ce78ea2c" + "a92f490c-6edd-466b-b621-c9043c6431b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4128,16 +4068,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-request-id": [ - "df814829-7d89-4977-9c82-2320569c4b19" + "ba7fc184-7e98-497e-96f2-2337b29f067a" ], "x-ms-correlation-request-id": [ - "df814829-7d89-4977-9c82-2320569c4b19" + "ba7fc184-7e98-497e-96f2-2337b29f067a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063606Z:df814829-7d89-4977-9c82-2320569c4b19" + "WESTCENTRALUS:20230217T005302Z:ba7fc184-7e98-497e-96f2-2337b29f067a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4146,7 +4086,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:05 GMT" + "Fri, 17 Feb 2023 00:53:01 GMT" ], "Content-Length": [ "229" @@ -4158,28 +4098,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62c12cee-4a88-4a4e-a675-58e3c078c429" + "5543061c-0d5d-49fb-a621-26a9fd003eef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4191,16 +4131,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-request-id": [ - "2e566721-75a1-498e-8994-a0b637e65c97" + "2e2a6931-67f8-4df6-a071-1a071441bbe2" ], "x-ms-correlation-request-id": [ - "2e566721-75a1-498e-8994-a0b637e65c97" + "2e2a6931-67f8-4df6-a071-1a071441bbe2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063606Z:2e566721-75a1-498e-8994-a0b637e65c97" + "WESTCENTRALUS:20230217T005302Z:2e2a6931-67f8-4df6-a071-1a071441bbe2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4209,7 +4149,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:05 GMT" + "Fri, 17 Feb 2023 00:53:01 GMT" ], "Content-Length": [ "229" @@ -4221,28 +4161,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9be433cf-188a-41bb-81bd-de7c72781a84" + "cf506292-048a-4487-928e-91be1803fe20" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4254,16 +4194,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1199" ], "x-ms-request-id": [ - "1f7e8945-2753-499e-96a1-b72d2e6765ff" + "07c177ef-027d-492e-b19a-0ccbdbbdcec8" ], "x-ms-correlation-request-id": [ - "1f7e8945-2753-499e-96a1-b72d2e6765ff" + "07c177ef-027d-492e-b19a-0ccbdbbdcec8" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063606Z:1f7e8945-2753-499e-96a1-b72d2e6765ff" + "WESTCENTRALUS:20230217T005303Z:07c177ef-027d-492e-b19a-0ccbdbbdcec8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4272,7 +4212,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:06 GMT" + "Fri, 17 Feb 2023 00:53:02 GMT" ], "Content-Length": [ "229" @@ -4284,28 +4224,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc89f662-48ea-4fb8-929d-3625df21ef10" + "8b055b19-1b3c-45f6-bd95-a3b540512a68" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4317,16 +4257,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1197" ], "x-ms-request-id": [ - "c14829ac-85f4-4dc4-872d-34d4b41e0a1d" + "4b714d99-f9a0-417d-9aa8-1e5bf5377f83" ], "x-ms-correlation-request-id": [ - "c14829ac-85f4-4dc4-872d-34d4b41e0a1d" + "4b714d99-f9a0-417d-9aa8-1e5bf5377f83" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063606Z:c14829ac-85f4-4dc4-872d-34d4b41e0a1d" + "WESTCENTRALUS:20230217T005304Z:4b714d99-f9a0-417d-9aa8-1e5bf5377f83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4335,7 +4275,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:06 GMT" + "Fri, 17 Feb 2023 00:53:03 GMT" ], "Content-Length": [ "229" @@ -4347,28 +4287,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6917ca96-c9e7-4c71-af73-80d4d9d86edb" + "f3b68533-e7d5-4f74-b72a-2662fe84f81a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4380,16 +4320,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1198" ], "x-ms-request-id": [ - "5ef37db9-91b1-42bc-a5b1-34d26a8b7015" + "080af405-58b6-4b49-92e0-bd25d22c8822" ], "x-ms-correlation-request-id": [ - "5ef37db9-91b1-42bc-a5b1-34d26a8b7015" + "080af405-58b6-4b49-92e0-bd25d22c8822" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063607Z:5ef37db9-91b1-42bc-a5b1-34d26a8b7015" + "WESTCENTRALUS:20230217T005305Z:080af405-58b6-4b49-92e0-bd25d22c8822" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4398,7 +4338,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:06 GMT" + "Fri, 17 Feb 2023 00:53:05 GMT" ], "Content-Length": [ "229" @@ -4410,28 +4350,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8281cebb-cbdb-4415-bf20-8f5c82528ac7" + "70dce1e1-539d-4a8f-857d-58f8635a2879" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4443,16 +4383,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1198" ], "x-ms-request-id": [ - "188f9904-456b-4e4c-9721-45beb94d8ebd" + "d66e117b-3344-41ab-9ee6-084173b0a90f" ], "x-ms-correlation-request-id": [ - "188f9904-456b-4e4c-9721-45beb94d8ebd" + "d66e117b-3344-41ab-9ee6-084173b0a90f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063607Z:188f9904-456b-4e4c-9721-45beb94d8ebd" + "WESTUS:20230217T005305Z:d66e117b-3344-41ab-9ee6-084173b0a90f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4461,7 +4401,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:07 GMT" + "Fri, 17 Feb 2023 00:53:05 GMT" ], "Content-Length": [ "229" @@ -4473,28 +4413,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1b02996-8f46-4858-942a-77d73302b12f" + "38b26b70-336c-4e7f-97b0-90528be65e24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4506,16 +4446,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1199" ], "x-ms-request-id": [ - "e218bde2-a6df-4032-aaef-21f929b8f0a1" + "1fce70ce-af36-4b14-a396-9c77441d32a9" ], "x-ms-correlation-request-id": [ - "e218bde2-a6df-4032-aaef-21f929b8f0a1" + "1fce70ce-af36-4b14-a396-9c77441d32a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063608Z:e218bde2-a6df-4032-aaef-21f929b8f0a1" + "WESTUS:20230217T005306Z:1fce70ce-af36-4b14-a396-9c77441d32a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4524,7 +4464,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:07 GMT" + "Fri, 17 Feb 2023 00:53:06 GMT" ], "Content-Length": [ "229" @@ -4536,28 +4476,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15d67b08-04b9-45a6-b325-13344b1b612e" + "25a6f0f3-7906-49e8-a26a-cebb38e77714" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4569,16 +4509,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1199" ], "x-ms-request-id": [ - "5c4004f0-daa8-4ca2-830f-f8d4538a6cb5" + "4840d4bc-def9-489b-8a3b-456c1e303a53" ], "x-ms-correlation-request-id": [ - "5c4004f0-daa8-4ca2-830f-f8d4538a6cb5" + "4840d4bc-def9-489b-8a3b-456c1e303a53" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063608Z:5c4004f0-daa8-4ca2-830f-f8d4538a6cb5" + "WESTUS:20230217T005307Z:4840d4bc-def9-489b-8a3b-456c1e303a53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4587,7 +4527,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:08 GMT" + "Fri, 17 Feb 2023 00:53:06 GMT" ], "Content-Length": [ "229" @@ -4599,28 +4539,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18790cbf-a740-4a21-a0e2-dad87cb74e1a" + "0b90b916-a461-4244-9274-1996ba034b44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4632,16 +4572,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1199" ], "x-ms-request-id": [ - "2c91386e-702a-4620-8da6-c18d204ab688" + "55d5ca27-0927-4515-aeb4-d74e7bff956a" ], "x-ms-correlation-request-id": [ - "2c91386e-702a-4620-8da6-c18d204ab688" + "55d5ca27-0927-4515-aeb4-d74e7bff956a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063609Z:2c91386e-702a-4620-8da6-c18d204ab688" + "WESTUS:20230217T005307Z:55d5ca27-0927-4515-aeb4-d74e7bff956a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4650,7 +4590,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:08 GMT" + "Fri, 17 Feb 2023 00:53:07 GMT" ], "Content-Length": [ "229" @@ -4662,28 +4602,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81eeae42-3b75-47da-a78b-186d6058caa1" + "41f174e2-525c-4e40-9f06-adcf6a1f43ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4695,16 +4635,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1199" ], "x-ms-request-id": [ - "a6fce2c3-bda1-4741-8b1b-96b30e2d95e5" + "8a9b634c-2d35-40d9-a6ff-079a03718e05" ], "x-ms-correlation-request-id": [ - "a6fce2c3-bda1-4741-8b1b-96b30e2d95e5" + "8a9b634c-2d35-40d9-a6ff-079a03718e05" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063609Z:a6fce2c3-bda1-4741-8b1b-96b30e2d95e5" + "WESTUS:20230217T005308Z:8a9b634c-2d35-40d9-a6ff-079a03718e05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4713,7 +4653,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:09 GMT" + "Fri, 17 Feb 2023 00:53:07 GMT" ], "Content-Length": [ "229" @@ -4725,28 +4665,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "efcb706f-842a-4f3b-987b-e2f2c0753c69" + "4fd19757-b938-4112-a270-411ab996b661" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4758,16 +4698,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1199" ], "x-ms-request-id": [ - "de5cd86e-4ebc-48e7-a5a7-2094f9ca8d9d" + "bdc33e5e-f3da-4275-89a4-3862e79543be" ], "x-ms-correlation-request-id": [ - "de5cd86e-4ebc-48e7-a5a7-2094f9ca8d9d" + "bdc33e5e-f3da-4275-89a4-3862e79543be" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063610Z:de5cd86e-4ebc-48e7-a5a7-2094f9ca8d9d" + "WESTUS:20230217T005309Z:bdc33e5e-f3da-4275-89a4-3862e79543be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4776,7 +4716,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:09 GMT" + "Fri, 17 Feb 2023 00:53:09 GMT" ], "Content-Length": [ "229" @@ -4788,28 +4728,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6190a9a1-d1df-4d7b-b35d-da5d73c8af5a" + "f26e505d-9252-4220-a28d-0ffa0f4cbd0a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4821,16 +4761,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1199" ], "x-ms-request-id": [ - "c2018a44-5a56-4690-b5af-06c26f8323e9" + "b30299fd-fc97-42a1-ad27-fd20c12d7dca" ], "x-ms-correlation-request-id": [ - "c2018a44-5a56-4690-b5af-06c26f8323e9" + "b30299fd-fc97-42a1-ad27-fd20c12d7dca" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063610Z:c2018a44-5a56-4690-b5af-06c26f8323e9" + "WESTUS:20230217T005310Z:b30299fd-fc97-42a1-ad27-fd20c12d7dca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4839,7 +4779,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:10 GMT" + "Fri, 17 Feb 2023 00:53:09 GMT" ], "Content-Length": [ "229" @@ -4851,28 +4791,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86ca1110-459e-4ad5-a7e0-56e2337e659c" + "9b561d3b-9440-4847-a9f1-a93e75ea3e98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4884,16 +4824,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1199" ], "x-ms-request-id": [ - "3b7fdc54-7c9e-4b6b-ae6b-36f878bef937" + "4fa9e83b-c6db-4a04-9cd9-8deb0fb78d5d" ], "x-ms-correlation-request-id": [ - "3b7fdc54-7c9e-4b6b-ae6b-36f878bef937" + "4fa9e83b-c6db-4a04-9cd9-8deb0fb78d5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063611Z:3b7fdc54-7c9e-4b6b-ae6b-36f878bef937" + "WESTUS:20230217T005310Z:4fa9e83b-c6db-4a04-9cd9-8deb0fb78d5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4902,7 +4842,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:10 GMT" + "Fri, 17 Feb 2023 00:53:10 GMT" ], "Content-Length": [ "229" @@ -4914,28 +4854,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a9901a1-2294-4cdc-b0a0-2dcbe50cfe84" + "ea4718bd-65f1-4277-9b8c-9a3d5402709f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4947,16 +4887,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1199" ], "x-ms-request-id": [ - "45e97231-e849-40c7-9a02-7a4e063e20a2" + "12318380-c318-4505-881a-74945f3a4d85" ], "x-ms-correlation-request-id": [ - "45e97231-e849-40c7-9a02-7a4e063e20a2" + "12318380-c318-4505-881a-74945f3a4d85" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063611Z:45e97231-e849-40c7-9a02-7a4e063e20a2" + "WESTUS:20230217T005311Z:12318380-c318-4505-881a-74945f3a4d85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4965,7 +4905,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:10 GMT" + "Fri, 17 Feb 2023 00:53:10 GMT" ], "Content-Length": [ "229" @@ -4977,28 +4917,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afd0b8cb-3560-43cc-9709-e754500310cb" + "49319700-d06f-454d-b880-e0306b3ddbc8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5010,16 +4950,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "1199" ], "x-ms-request-id": [ - "e8c9bf6c-f5d8-445f-8a54-b12e9edbb5f3" + "6039c901-b42e-49f8-a864-179fbf7e14f2" ], "x-ms-correlation-request-id": [ - "e8c9bf6c-f5d8-445f-8a54-b12e9edbb5f3" + "6039c901-b42e-49f8-a864-179fbf7e14f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063612Z:e8c9bf6c-f5d8-445f-8a54-b12e9edbb5f3" + "WESTUS:20230217T005312Z:6039c901-b42e-49f8-a864-179fbf7e14f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5028,7 +4968,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:11 GMT" + "Fri, 17 Feb 2023 00:53:11 GMT" ], "Content-Length": [ "229" @@ -5040,28 +4980,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27d71b37-afad-4b8e-a5fe-beac68263207" + "e6b88155-8274-4441-9f9c-5fd3e31b51bf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5073,16 +5013,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1199" ], "x-ms-request-id": [ - "41ae21d8-2943-493d-a0ff-3a9fc97c76f8" + "476988e4-0bba-4e1d-843a-27284d48db90" ], "x-ms-correlation-request-id": [ - "41ae21d8-2943-493d-a0ff-3a9fc97c76f8" + "476988e4-0bba-4e1d-843a-27284d48db90" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063612Z:41ae21d8-2943-493d-a0ff-3a9fc97c76f8" + "WESTUS:20230217T005312Z:476988e4-0bba-4e1d-843a-27284d48db90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5091,7 +5031,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:11 GMT" + "Fri, 17 Feb 2023 00:53:11 GMT" ], "Content-Length": [ "229" @@ -5103,25 +5043,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"2G/bDL3VjpbOz7SxczZmL4dYOTJPTHsJTXWC8gNXPms=\",\r\n \"secondaryKey\": \"ejMOg/RTsvKxiZckoVVkwU7jYgbBmixksvrJNCZYRSA=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/provisioningServices/ps980/operationResults/b3NfaWRfMDM2OTEwYTMtOWM5NC00MDNjLWIxZGItNWQzZTQxYTk5YTY0?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5ODAvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZk1ETTJPVEV3WVRNdE9XTTVOQzAwTUROakxXSXhaR0l0TldRelpUUXhZVGs1WVRZMD9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/provisioningServices/ps4877/operationResults/aWQ9b3NfaWRfYmNkYjJhNzgtYWNjOS00NmU3LTlhNjUtNzg4OTNjOTBiMWM2O3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM0ODc3L29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmWW1Oa1lqSmhOemd0WVdOak9TMDBObVUzTFRsaE5qVXROemc0T1ROak9UQmlNV00yTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffef84ee-57c6-4ce4-a902-d7e7ae9e7bc3" + "7a60d3bd-9eff-4328-b4b2-0542224a0adf" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5133,16 +5073,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11997" ], "x-ms-request-id": [ - "631d5d25-dc1f-4eb6-9403-bfda5f5eaf73" + "71a7eb73-3c22-484a-a9b9-c65074938953" ], "x-ms-correlation-request-id": [ - "631d5d25-dc1f-4eb6-9403-bfda5f5eaf73" + "71a7eb73-3c22-484a-a9b9-c65074938953" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063645Z:631d5d25-dc1f-4eb6-9403-bfda5f5eaf73" + "WESTUS:20230217T005344Z:71a7eb73-3c22-484a-a9b9-c65074938953" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5151,7 +5091,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:45 GMT" + "Fri, 17 Feb 2023 00:53:44 GMT" ], "Content-Length": [ "22" @@ -5167,24 +5107,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2836/providers/Microsoft.Devices/IotHubs/ps6026?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjgzNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczYwMjY/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4823/providers/Microsoft.Devices/IotHubs/ps9609?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDgyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczk2MDk/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4a9094d-5940-4e5d-b752-3e6cadd7da6d" + "7389ab03-276a-471e-abe6-be95b193cfcd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5193,13 +5133,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfNTk0YTBjNGMtNGVhNC00MDgwLWJkZDItNzA4NjgxYTUzZjQw?api-version=2020-03-01&operationSource=os_ih" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNDhhMTcxZGEtYjEwMi00NWEwLThiYWMtYzM5MTRhZmFhZmVkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfNTk0YTBjNGMtNGVhNC00MDgwLWJkZDItNzA4NjgxYTUzZjQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNDhhMTcxZGEtYjEwMi00NWEwLThiYWMtYzM5MTRhZmFhZmVkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5208,13 +5148,13 @@ "14999" ], "x-ms-request-id": [ - "13ddaa08-85ac-4619-81d9-f07551c9eb57" + "bf7ccc8d-cbb8-4406-a36f-037037da54b5" ], "x-ms-correlation-request-id": [ - "13ddaa08-85ac-4619-81d9-f07551c9eb57" + "bf7ccc8d-cbb8-4406-a36f-037037da54b5" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063646Z:13ddaa08-85ac-4619-81d9-f07551c9eb57" + "WESTUS:20230217T005345Z:bf7ccc8d-cbb8-4406-a36f-037037da54b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5223,7 +5163,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:36:46 GMT" + "Fri, 17 Feb 2023 00:53:45 GMT" ], "Content-Length": [ "4" @@ -5239,21 +5179,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfNTk0YTBjNGMtNGVhNC00MDgwLWJkZDItNzA4NjgxYTUzZjQw?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRrMFlUQmpOR010TkdWaE5DMDBNRGd3TFdKa1pESXROekE0TmpneFlUVXpaalF3P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNDhhMTcxZGEtYjEwMi00NWEwLThiYWMtYzM5MTRhZmFhZmVkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTkRoaE1UY3haR0V0WWpFd01pMDBOV0V3TFRoaVlXTXRZek01TVRSaFptRmhabVZrTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4a9094d-5940-4e5d-b752-3e6cadd7da6d" + "7389ab03-276a-471e-abe6-be95b193cfcd" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5265,16 +5205,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-request-id": [ - "00a3d08e-1f0b-49ac-a2f0-35f5cf5a4f7f" + "baff2689-476e-4b19-b8b9-f0beb763b334" ], "x-ms-correlation-request-id": [ - "00a3d08e-1f0b-49ac-a2f0-35f5cf5a4f7f" + "baff2689-476e-4b19-b8b9-f0beb763b334" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063701Z:00a3d08e-1f0b-49ac-a2f0-35f5cf5a4f7f" + "WESTUS:20230217T005400Z:baff2689-476e-4b19-b8b9-f0beb763b334" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5283,7 +5223,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:37:01 GMT" + "Fri, 17 Feb 2023 00:54:00 GMT" ], "Content-Length": [ "22" @@ -5299,21 +5239,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfNTk0YTBjNGMtNGVhNC00MDgwLWJkZDItNzA4NjgxYTUzZjQw?api-version=2020-03-01&operationSource=os_ih", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTlRrMFlUQmpOR010TkdWaE5DMDBNRGd3TFdKa1pESXROekE0TmpneFlUVXpaalF3P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2lo", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNDhhMTcxZGEtYjEwMi00NWEwLThiYWMtYzM5MTRhZmFhZmVkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTkRoaE1UY3haR0V0WWpFd01pMDBOV0V3TFRoaVlXTXRZek01TVRSaFptRmhabVZrTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXI=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4a9094d-5940-4e5d-b752-3e6cadd7da6d" + "7389ab03-276a-471e-abe6-be95b193cfcd" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5322,7 +5262,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfNTk0YTBjNGMtNGVhNC00MDgwLWJkZDItNzA4NjgxYTUzZjQw?api-version=2020-03-01&operationSource=os_ih" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNDhhMTcxZGEtYjEwMi00NWEwLThiYWMtYzM5MTRhZmFhZmVkO3JlZ2lvbj13ZXN0dXM%3D?api-version=2021-07-02&operationSource=other" ], "Retry-After": [ "15" @@ -5331,16 +5271,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11997" ], "x-ms-request-id": [ - "7b6e323f-580c-4e55-a9c7-3192b66a7451" + "a3c39389-add4-4d0c-ac7f-426a18fd91be" ], "x-ms-correlation-request-id": [ - "7b6e323f-580c-4e55-a9c7-3192b66a7451" + "a3c39389-add4-4d0c-ac7f-426a18fd91be" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063702Z:7b6e323f-580c-4e55-a9c7-3192b66a7451" + "WESTUS:20230217T005400Z:a3c39389-add4-4d0c-ac7f-426a18fd91be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5349,7 +5289,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:37:01 GMT" + "Fri, 17 Feb 2023 00:54:00 GMT" ], "Expires": [ "-1" @@ -5362,24 +5302,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps2836?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzMjgzNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps4823?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzNDgyMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "615eb090-bad0-49a7-adca-8b00482cd4f6" + "e85596c9-9992-475b-8d2e-f0d88ce16534" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5388,7 +5328,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5397,13 +5337,13 @@ "14999" ], "x-ms-request-id": [ - "d3258ba0-93d2-40dc-98f4-8e8482120575" + "4d779489-c222-4abd-aca9-a48669982402" ], "x-ms-correlation-request-id": [ - "d3258ba0-93d2-40dc-98f4-8e8482120575" + "4d779489-c222-4abd-aca9-a48669982402" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063702Z:d3258ba0-93d2-40dc-98f4-8e8482120575" + "WESTUS:20230217T005401Z:4d779489-c222-4abd-aca9-a48669982402" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5412,7 +5352,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:37:02 GMT" + "Fri, 17 Feb 2023 00:54:00 GMT" ], "Expires": [ "-1" @@ -5425,18 +5365,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5445,7 +5385,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5454,13 +5394,13 @@ "11999" ], "x-ms-request-id": [ - "583e67a6-4cf6-40bb-85ab-b5351924ab1c" + "6bbec073-9131-461f-9315-660b4971563c" ], "x-ms-correlation-request-id": [ - "583e67a6-4cf6-40bb-85ab-b5351924ab1c" + "6bbec073-9131-461f-9315-660b4971563c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063717Z:583e67a6-4cf6-40bb-85ab-b5351924ab1c" + "WESTUS:20230217T005416Z:6bbec073-9131-461f-9315-660b4971563c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5469,7 +5409,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:37:16 GMT" + "Fri, 17 Feb 2023 00:54:15 GMT" ], "Expires": [ "-1" @@ -5482,18 +5422,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5502,7 +5442,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5511,13 +5451,13 @@ "11998" ], "x-ms-request-id": [ - "3398912f-d9b5-4faa-b9dd-f4215f388a8d" + "ee834279-5406-4c87-8c70-06c0e181d609" ], "x-ms-correlation-request-id": [ - "3398912f-d9b5-4faa-b9dd-f4215f388a8d" + "ee834279-5406-4c87-8c70-06c0e181d609" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063732Z:3398912f-d9b5-4faa-b9dd-f4215f388a8d" + "WESTUS:20230217T005431Z:ee834279-5406-4c87-8c70-06c0e181d609" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5526,7 +5466,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:37:32 GMT" + "Fri, 17 Feb 2023 00:54:31 GMT" ], "Expires": [ "-1" @@ -5539,18 +5479,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5559,7 +5499,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -5568,13 +5508,13 @@ "11997" ], "x-ms-request-id": [ - "20c49358-b082-4d25-b727-6eba8e9a7c95" + "f84314e8-abde-4c1f-91b2-7ccba21955ce" ], "x-ms-correlation-request-id": [ - "20c49358-b082-4d25-b727-6eba8e9a7c95" + "f84314e8-abde-4c1f-91b2-7ccba21955ce" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063748Z:20c49358-b082-4d25-b727-6eba8e9a7c95" + "WESTUS:20230217T005446Z:f84314e8-abde-4c1f-91b2-7ccba21955ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5583,7 +5523,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:37:47 GMT" + "Fri, 17 Feb 2023 00:54:46 GMT" ], "Expires": [ "-1" @@ -5596,75 +5536,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "0d5a64fd-62fb-46f4-8417-c6351e2d9b33" - ], - "x-ms-correlation-request-id": [ - "0d5a64fd-62fb-46f4-8417-c6351e2d9b33" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T063803Z:0d5a64fd-62fb-46f4-8417-c6351e2d9b33" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:38:02 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5673,22 +5556,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-request-id": [ - "8db171cf-67e3-40a0-be07-a526e81fd27a" + "f1b015b5-dfc3-4491-b083-18eec48a1951" ], "x-ms-correlation-request-id": [ - "8db171cf-67e3-40a0-be07-a526e81fd27a" + "f1b015b5-dfc3-4491-b083-18eec48a1951" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063818Z:8db171cf-67e3-40a0-be07-a526e81fd27a" + "WESTUS:20230217T005501Z:f1b015b5-dfc3-4491-b083-18eec48a1951" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5697,7 +5580,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:38:18 GMT" + "Fri, 17 Feb 2023 00:55:01 GMT" ], "Expires": [ "-1" @@ -5710,75 +5593,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "fa90de22-d856-44f2-9275-1bc9615e5fcc" - ], - "x-ms-correlation-request-id": [ - "fa90de22-d856-44f2-9275-1bc9615e5fcc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T063833Z:fa90de22-d856-44f2-9275-1bc9615e5fcc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:38:32 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5787,16 +5613,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" ], "x-ms-request-id": [ - "5248f925-45ec-4814-bcb5-03ed556dd431" + "b82bb1a9-5325-417f-9fe6-f99f4da252a4" ], "x-ms-correlation-request-id": [ - "5248f925-45ec-4814-bcb5-03ed556dd431" + "b82bb1a9-5325-417f-9fe6-f99f4da252a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063848Z:5248f925-45ec-4814-bcb5-03ed556dd431" + "WESTUS:20230217T005516Z:b82bb1a9-5325-417f-9fe6-f99f4da252a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5805,7 +5631,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:38:47 GMT" + "Fri, 17 Feb 2023 00:55:15 GMT" ], "Expires": [ "-1" @@ -5818,18 +5644,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI4MzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNE16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4MjMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE1qTXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5838,16 +5664,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" ], "x-ms-request-id": [ - "3e882968-4010-489c-b756-6ff2b04dff4a" + "f0f48f73-3a3a-4fe1-b879-6cf14a31a677" ], "x-ms-correlation-request-id": [ - "3e882968-4010-489c-b756-6ff2b04dff4a" + "f0f48f73-3a3a-4fe1-b879-6cf14a31a677" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063848Z:3e882968-4010-489c-b756-6ff2b04dff4a" + "WESTUS:20230217T005516Z:f0f48f73-3a3a-4fe1-b879-6cf14a31a677" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5856,7 +5682,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:38:47 GMT" + "Fri, 17 Feb 2023 00:55:15 GMT" ], "Expires": [ "-1" @@ -5871,12 +5697,12 @@ ], "Names": { "Test-AzIotDpsEnrollmentLifeCycle": [ - "ps980", - "ps2836", - "ps6026", - "ps4913", - "ps5122", - "ps5954" + "ps4877", + "ps4823", + "ps9609", + "ps4707", + "ps1141", + "ps4145" ] }, "Variables": { diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsLinkedHubTests/IotDpsLinkedHubLifeCycle.json b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsLinkedHubTests/IotDpsLinkedHubLifeCycle.json index d7cb969a979d..14527056c64e 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsLinkedHubTests/IotDpsLinkedHubLifeCycle.json +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsLinkedHubTests/IotDpsLinkedHubLifeCycle.json @@ -4,21 +4,21 @@ "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09251d67-573f-4d38-a630-f6b90ce8fa25" + "2768500d-bd25-4340-aaeb-f772122f6280" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "7c42751f-c7be-4554-9954-94f22c392e92" + "717f6de7-29f5-4284-bd4b-ce2e823eb045" ], "x-ms-correlation-request-id": [ - "7c42751f-c7be-4554-9954-94f22c392e92" + "717f6de7-29f5-4284-bd4b-ce2e823eb045" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062326Z:7c42751f-c7be-4554-9954-94f22c392e92" + "WESTUS:20230217T005805Z:717f6de7-29f5-4284-bd4b-ce2e823eb045" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:23:26 GMT" + "Fri, 17 Feb 2023 00:58:05 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,28 @@ "-1" ], "Content-Length": [ - "5586" + "9626" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\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 \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\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 \"2018-12-01-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 ],\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/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"roleDefinitionId\": \"d04fc6c0-fc10-4ab8-b7de-c979247c3b65\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"provisioningServiceOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-09-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations/provisioningServiceOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway EAST\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\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\": \"IotHubs/failover\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"Australia Central\"\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps2974?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzMjk3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps147?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzMTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0bbf47b6-31fc-4ff1-be6c-c47b3d66ae36" + "12aab066-46de-4dc8-9632-82a8674f8e1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -85,6 +84,7 @@ "29" ] }, + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "e1c8a5e7-e368-4e1e-862c-c407ecf1273b" + "f0ec6120-ec1c-479f-8cac-2e0b3f473311" ], "x-ms-correlation-request-id": [ - "e1c8a5e7-e368-4e1e-862c-c407ecf1273b" + "f0ec6120-ec1c-479f-8cac-2e0b3f473311" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062327Z:e1c8a5e7-e368-4e1e-862c-c407ecf1273b" + "WESTUS:20230217T005805Z:f0ec6120-ec1c-479f-8cac-2e0b3f473311" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:23:27 GMT" + "Fri, 17 Feb 2023 00:58:05 GMT" ], "Content-Length": [ - "165" + "163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,25 +123,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974\",\r\n \"name\": \"ps2974\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147\",\r\n \"name\": \"ps147\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fa8aba98-3098-49e2-8900-d3645c0085ed" + "41757747-9a3e-456a-af8b-02516828b411" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -151,6 +150,7 @@ "86" ] }, + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178/operationResults/b3NfaWRfYTEyM2ZlYmEtMGVhZC00NGM2LThiZDMtNWQxMzk2NGJjMzM2?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543/operationResults/aWQ9b3NfaWRfYzVjM2IwZjAtMzIxZS00MjFlLThlNjMtYzYzYjE4ODE2NDdhO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "9f075743-f61e-45b2-80fa-ff20c1e546bf" + "94047c2d-a41c-4bb5-bf0f-6ee60a17f049" ], "x-ms-correlation-request-id": [ - "9f075743-f61e-45b2-80fa-ff20c1e546bf" + "94047c2d-a41c-4bb5-bf0f-6ee60a17f049" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062329Z:9f075743-f61e-45b2-80fa-ff20c1e546bf" + "WESTUS:20230217T005807Z:94047c2d-a41c-4bb5-bf0f-6ee60a17f049" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,10 +183,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:23:29 GMT" + "Fri, 17 Feb 2023 00:58:07 GMT" ], "Content-Length": [ - "462" + "460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,25 +195,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAcXyS0=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"HostName=ps2609.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=IvsZxsE+j165Gj/2PM+3g2MqaVHheTQzc0cK6ER7l8s=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "44d66394-572c-42e9-bc38-ecb22229af3d" + "de37e25c-a5ed-4132-8322-c7cb941f36ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -223,6 +222,7 @@ "503" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAAABbfBXc=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -231,7 +231,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178/operationResults/b3NfaWRfYWM0Y2Y3NzctZmZiNi00ZGI1LWEwOTktNzQ0N2M5ZWUwOGEx?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543/operationResults/aWQ9b3NfaWRfZDVkMmM4OTMtMTUyYS00YjA3LThlMmMtN2QxZTg1MmMwNTVmO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,13 +240,13 @@ "4999" ], "x-ms-request-id": [ - "eb924738-d358-413e-9112-d51a3326ef8b" + "5a5301e7-2bde-4efb-b8b9-298add8fb2a4" ], "x-ms-correlation-request-id": [ - "eb924738-d358-413e-9112-d51a3326ef8b" + "5a5301e7-2bde-4efb-b8b9-298add8fb2a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062648Z:eb924738-d358-413e-9112-d51a3326ef8b" + "WESTUS:20230217T010150Z:5a5301e7-2bde-4efb-b8b9-298add8fb2a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,10 +255,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:26:48 GMT" + "Fri, 17 Feb 2023 01:01:50 GMT" ], "Content-Length": [ - "733" + "731" ], "Content-Type": [ "application/json; charset=utf-8" @@ -267,25 +267,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXyS0=\",\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2609.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2609.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=IvsZxsE+j165Gj/2PM+3g2MqaVHheTQzc0cK6ER7l8s=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfBXc=\",\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps5842.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAcXyuY=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"connectionString\": \"HostName=ps2609.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9a25d331-f21a-4244-b74e-3d82dc2ed8ef" + "d76fc159-e93b-4e14-89c8-f56fcc54d65d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -295,6 +294,7 @@ "496" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAAABbfCBQ=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -303,22 +303,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178/operationResults/b3NfaWRfNjM5Y2E4ZjgtODA4ZS00MDMwLTkzOTUtNGU0MzA4YzU5MzBi?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543/operationResults/aWQ9b3NfaWRfMzZmOGI0ZTctMzU3ZC00YjBhLTgzYjUtMDM2MzBjOTU5MzU4O3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4998" + "4999" ], "x-ms-request-id": [ - "c321506b-4aec-4ed6-8ea5-43eaae6ad53b" + "ccfa7ba6-ca1f-41b4-8337-3b8f262110b2" ], "x-ms-correlation-request-id": [ - "c321506b-4aec-4ed6-8ea5-43eaae6ad53b" + "ccfa7ba6-ca1f-41b4-8337-3b8f262110b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062720Z:c321506b-4aec-4ed6-8ea5-43eaae6ad53b" + "WESTUS:20230217T010222Z:ccfa7ba6-ca1f-41b4-8337-3b8f262110b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -327,10 +327,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:27:19 GMT" + "Fri, 17 Feb 2023 01:02:21 GMT" ], "Content-Length": [ - "715" + "713" ], "Content-Type": [ "application/json; charset=utf-8" @@ -339,25 +339,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXyuY=\",\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps2609.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2609.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfCBQ=\",\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps5842.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAcXyyc=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "64ff12cb-e03c-4321-b058-10d227425f57" + "d135895e-a848-4e1e-9064-f2777ed62aec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -367,6 +366,7 @@ "249" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAAABbfCGE=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -375,22 +375,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178/operationResults/b3NfaWRfMWNmNDZmMzUtY2NiNS00NTBkLWI1NmUtMTYzMGM4MWI5ZGNl?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543/operationResults/aWQ9b3NfaWRfNGE5OTgxZDUtMDBlZC00MmVjLTk5MDctN2QwNWY1NjA3YWExO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4997" + "4999" ], "x-ms-request-id": [ - "17c3126f-d5bf-4e5d-947c-4321a1c149f8" + "da5cb65b-fdc1-485e-b020-e6d5b80091b7" ], "x-ms-correlation-request-id": [ - "17c3126f-d5bf-4e5d-947c-4321a1c149f8" + "da5cb65b-fdc1-485e-b020-e6d5b80091b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062752Z:17c3126f-d5bf-4e5d-947c-4321a1c149f8" + "WESTUS:20230217T010254Z:da5cb65b-fdc1-485e-b020-e6d5b80091b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -399,10 +399,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:27:51 GMT" + "Fri, 17 Feb 2023 01:02:54 GMT" ], "Content-Length": [ - "500" + "498" ], "Content-Type": [ "application/json; charset=utf-8" @@ -411,25 +411,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXyyc=\",\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfCGE=\",\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178/operationResults/b3NfaWRfYTEyM2ZlYmEtMGVhZC00NGM2LThiZDMtNWQxMzk2NGJjMzM2?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZZVEV5TTJabFltRXRNR1ZoWkMwME5HTTJMVGhpWkRNdE5XUXhNemsyTkdKak16TTI/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543/operationResults/aWQ9b3NfaWRfYzVjM2IwZjAtMzIxZS00MjFlLThlNjMtYzYzYjE4ODE2NDdhO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDMvb3BlcmF0aW9uUmVzdWx0cy9hV1E5YjNOZmFXUmZZelZqTTJJd1pqQXRNekl4WlMwME1qRmxMVGhsTmpNdFl6WXpZakU0T0RFMk5EZGhPM0psWjJsdmJqMTNaWE4wZFhNPT9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa8aba98-3098-49e2-8900-d3645c0085ed" + "41757747-9a3e-456a-af8b-02516828b411" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -444,13 +444,13 @@ "11999" ], "x-ms-request-id": [ - "df5255e9-6e5e-4476-a9ec-c26551615f7e" + "e2c79302-d786-4308-b96a-b19bbf67fd60" ], "x-ms-correlation-request-id": [ - "df5255e9-6e5e-4476-a9ec-c26551615f7e" + "e2c79302-d786-4308-b96a-b19bbf67fd60" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062359Z:df5255e9-6e5e-4476-a9ec-c26551615f7e" + "WESTUS:20230217T005838Z:e2c79302-d786-4308-b96a-b19bbf67fd60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -459,7 +459,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:23:59 GMT" + "Fri, 17 Feb 2023 00:58:37 GMT" ], "Content-Length": [ "22" @@ -475,21 +475,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa8aba98-3098-49e2-8900-d3645c0085ed" + "41757747-9a3e-456a-af8b-02516828b411" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -504,13 +504,13 @@ "11998" ], "x-ms-request-id": [ - "3ce981e9-31eb-4d23-a245-56c5e570a6c2" + "91bc16bd-855f-4438-ac0f-1a8359cf8b25" ], "x-ms-correlation-request-id": [ - "3ce981e9-31eb-4d23-a245-56c5e570a6c2" + "91bc16bd-855f-4438-ac0f-1a8359cf8b25" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062359Z:3ce981e9-31eb-4d23-a245-56c5e570a6c2" + "WESTUS:20230217T005838Z:91bc16bd-855f-4438-ac0f-1a8359cf8b25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,10 +519,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:23:59 GMT" + "Fri, 17 Feb 2023 00:58:37 GMT" ], "Content-Length": [ - "640" + "638" ], "Content-Type": [ "application/json; charset=utf-8" @@ -531,28 +531,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXyS0=\",\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps9178.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236210\"\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfBXc=\",\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8543.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4BC\"\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa8aba98-3098-49e2-8900-d3645c0085ed" + "41757747-9a3e-456a-af8b-02516828b411" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -567,13 +567,13 @@ "11997" ], "x-ms-request-id": [ - "75645869-202e-4cb2-a9a8-a3fd6ca25d35" + "6d6ecca4-6b1b-4236-9d14-af0503e9ab83" ], "x-ms-correlation-request-id": [ - "75645869-202e-4cb2-a9a8-a3fd6ca25d35" + "6d6ecca4-6b1b-4236-9d14-af0503e9ab83" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062359Z:75645869-202e-4cb2-a9a8-a3fd6ca25d35" + "WESTUS:20230217T005838Z:6d6ecca4-6b1b-4236-9d14-af0503e9ab83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582,10 +582,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:23:59 GMT" + "Fri, 17 Feb 2023 00:58:37 GMT" ], "Content-Length": [ - "640" + "638" ], "Content-Type": [ "application/json; charset=utf-8" @@ -594,28 +594,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXyS0=\",\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps9178.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236210\"\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfBXc=\",\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8543.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4BC\"\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44d66394-572c-42e9-bc38-ecb22229af3d" + "de37e25c-a5ed-4132-8322-c7cb941f36ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -630,13 +630,13 @@ "11999" ], "x-ms-request-id": [ - "2ed5922e-40d6-425c-8134-96e52e406296" + "36c0bf61-c2c7-4a1f-84f0-eab3f845d58d" ], "x-ms-correlation-request-id": [ - "2ed5922e-40d6-425c-8134-96e52e406296" + "36c0bf61-c2c7-4a1f-84f0-eab3f845d58d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062647Z:2ed5922e-40d6-425c-8134-96e52e406296" + "WESTUS:20230217T010149Z:36c0bf61-c2c7-4a1f-84f0-eab3f845d58d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -645,10 +645,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:26:46 GMT" + "Fri, 17 Feb 2023 01:01:49 GMT" ], "Content-Length": [ - "640" + "638" ], "Content-Type": [ "application/json; charset=utf-8" @@ -657,25 +657,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXyS0=\",\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps9178.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236210\"\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfBXc=\",\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8543.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4BC\"\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44d66394-572c-42e9-bc38-ecb22229af3d" + "de37e25c-a5ed-4132-8322-c7cb941f36ab" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -690,13 +690,13 @@ "11997" ], "x-ms-request-id": [ - "140df6d4-065b-4334-a8c5-d6f15d5da9f5" + "89bc6b5e-4aeb-4384-946e-a33808bb9519" ], "x-ms-correlation-request-id": [ - "140df6d4-065b-4334-a8c5-d6f15d5da9f5" + "89bc6b5e-4aeb-4384-946e-a33808bb9519" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062718Z:140df6d4-065b-4334-a8c5-d6f15d5da9f5" + "WESTUS:20230217T010221Z:89bc6b5e-4aeb-4384-946e-a33808bb9519" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -705,10 +705,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:27:18 GMT" + "Fri, 17 Feb 2023 01:02:20 GMT" ], "Content-Length": [ - "833" + "831" ], "Content-Type": [ "application/json; charset=utf-8" @@ -717,28 +717,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXyuY=\",\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2609.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2609.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps9178.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236210\"\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfCBQ=\",\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps5842.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8543.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4BC\"\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44d66394-572c-42e9-bc38-ecb22229af3d" + "de37e25c-a5ed-4132-8322-c7cb941f36ab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -753,13 +753,13 @@ "11996" ], "x-ms-request-id": [ - "946ef9fc-49f8-4650-8c6f-ed9bf19cf7b8" + "a05a9b55-83c6-471f-91bf-e81cbea90856" ], "x-ms-correlation-request-id": [ - "946ef9fc-49f8-4650-8c6f-ed9bf19cf7b8" + "a05a9b55-83c6-471f-91bf-e81cbea90856" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062719Z:946ef9fc-49f8-4650-8c6f-ed9bf19cf7b8" + "WESTUS:20230217T010221Z:a05a9b55-83c6-471f-91bf-e81cbea90856" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,10 +768,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:27:18 GMT" + "Fri, 17 Feb 2023 01:02:20 GMT" ], "Content-Length": [ - "833" + "831" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,28 +780,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXyuY=\",\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2609.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2609.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps9178.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236210\"\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfCBQ=\",\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps5842.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8543.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4BC\"\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a25d331-f21a-4244-b74e-3d82dc2ed8ef" + "d76fc159-e93b-4e14-89c8-f56fcc54d65d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -813,16 +813,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "a6e72c81-a9ec-4d87-b575-21eb6a70713d" + "8a116076-b813-4dbb-b502-93e5163eecf6" ], "x-ms-correlation-request-id": [ - "a6e72c81-a9ec-4d87-b575-21eb6a70713d" + "8a116076-b813-4dbb-b502-93e5163eecf6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062719Z:a6e72c81-a9ec-4d87-b575-21eb6a70713d" + "WESTUS:20230217T010221Z:8a116076-b813-4dbb-b502-93e5163eecf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -831,10 +831,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:27:18 GMT" + "Fri, 17 Feb 2023 01:02:21 GMT" ], "Content-Length": [ - "833" + "831" ], "Content-Type": [ "application/json; charset=utf-8" @@ -843,25 +843,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXyuY=\",\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps2609.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2609.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps9178.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236210\"\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfCBQ=\",\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps5842.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8543.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4BC\"\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a25d331-f21a-4244-b74e-3d82dc2ed8ef" + "d76fc159-e93b-4e14-89c8-f56fcc54d65d" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -873,16 +873,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-request-id": [ - "f803614f-8212-41de-8960-956961d56910" + "18a0d0cd-86a7-41f9-b3a3-4b3cf8fa0a54" ], "x-ms-correlation-request-id": [ - "f803614f-8212-41de-8960-956961d56910" + "18a0d0cd-86a7-41f9-b3a3-4b3cf8fa0a54" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062750Z:f803614f-8212-41de-8960-956961d56910" + "WESTUS:20230217T010252Z:18a0d0cd-86a7-41f9-b3a3-4b3cf8fa0a54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -891,10 +891,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:27:50 GMT" + "Fri, 17 Feb 2023 01:02:51 GMT" ], "Content-Length": [ - "855" + "853" ], "Content-Type": [ "application/json; charset=utf-8" @@ -903,28 +903,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXyyc=\",\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps2609.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2609.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps9178.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236210\"\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfCGE=\",\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps5842.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8543.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4BC\"\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a25d331-f21a-4244-b74e-3d82dc2ed8ef" + "d76fc159-e93b-4e14-89c8-f56fcc54d65d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -936,16 +936,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-request-id": [ - "98d5e356-a36b-4ddb-bd8c-236ca175a210" + "46eb3ddf-9fe0-4485-aa5c-84fa2cc83228" ], "x-ms-correlation-request-id": [ - "98d5e356-a36b-4ddb-bd8c-236ca175a210" + "46eb3ddf-9fe0-4485-aa5c-84fa2cc83228" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062751Z:98d5e356-a36b-4ddb-bd8c-236ca175a210" + "WESTUS:20230217T010252Z:46eb3ddf-9fe0-4485-aa5c-84fa2cc83228" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,10 +954,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:27:50 GMT" + "Fri, 17 Feb 2023 01:02:51 GMT" ], "Content-Length": [ - "855" + "853" ], "Content-Type": [ "application/json; charset=utf-8" @@ -966,28 +966,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXyyc=\",\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps2609.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2609.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps9178.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236210\"\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfCGE=\",\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps5842.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8543.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4BC\"\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72a698f8-5fd4-48fe-8ac5-fa5b6cd6e1df" + "8a763ac7-db24-4100-a7d6-ca584ca2e579" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -999,16 +999,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-request-id": [ - "8d7f3b68-2993-438e-9a90-6e09b466962f" + "d397f7db-0a37-463b-bae6-5ab4da159a09" ], "x-ms-correlation-request-id": [ - "8d7f3b68-2993-438e-9a90-6e09b466962f" + "d397f7db-0a37-463b-bae6-5ab4da159a09" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062751Z:8d7f3b68-2993-438e-9a90-6e09b466962f" + "WESTUS:20230217T010253Z:d397f7db-0a37-463b-bae6-5ab4da159a09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1017,10 +1017,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:27:50 GMT" + "Fri, 17 Feb 2023 01:02:52 GMT" ], "Content-Length": [ - "855" + "853" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1029,28 +1029,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXyyc=\",\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps2609.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2609.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps9178.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236210\"\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfCGE=\",\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps5842.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8543.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4BC\"\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64ff12cb-e03c-4321-b058-10d227425f57" + "d135895e-a848-4e1e-9064-f2777ed62aec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1062,16 +1062,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-request-id": [ - "e27cf025-3d20-46d3-acc0-a6b1e1dba360" + "f3d49d4b-ad21-49f8-b178-a92d6a653d50" ], "x-ms-correlation-request-id": [ - "e27cf025-3d20-46d3-acc0-a6b1e1dba360" + "f3d49d4b-ad21-49f8-b178-a92d6a653d50" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062751Z:e27cf025-3d20-46d3-acc0-a6b1e1dba360" + "WESTUS:20230217T010253Z:f3d49d4b-ad21-49f8-b178-a92d6a653d50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1080,10 +1080,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:27:50 GMT" + "Fri, 17 Feb 2023 01:02:53 GMT" ], "Content-Length": [ - "855" + "853" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1092,28 +1092,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXyyc=\",\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps2609.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2609.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps9178.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236210\"\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfCGE=\",\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps5842.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8543.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4BC\"\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64ff12cb-e03c-4321-b058-10d227425f57" + "d135895e-a848-4e1e-9064-f2777ed62aec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1125,16 +1125,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11996" ], "x-ms-request-id": [ - "b872abe0-f28d-4048-92ba-ff114c6b9ad3" + "1edd9664-27dc-41f9-8803-6b5c1ca2e05f" ], "x-ms-correlation-request-id": [ - "b872abe0-f28d-4048-92ba-ff114c6b9ad3" + "1edd9664-27dc-41f9-8803-6b5c1ca2e05f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062751Z:b872abe0-f28d-4048-92ba-ff114c6b9ad3" + "WESTUS:20230217T010253Z:1edd9664-27dc-41f9-8803-6b5c1ca2e05f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1143,10 +1143,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:27:51 GMT" + "Fri, 17 Feb 2023 01:02:53 GMT" ], "Content-Length": [ - "855" + "853" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1155,25 +1155,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXyyc=\",\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps2609.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps2609.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps9178.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236210\"\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfCGE=\",\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"allocationWeight\": 10,\r\n \"name\": \"ps5842.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8543.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4BC\"\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64ff12cb-e03c-4321-b058-10d227425f57" + "d135895e-a848-4e1e-9064-f2777ed62aec" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1185,16 +1185,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11994" ], "x-ms-request-id": [ - "7d4770ce-acb1-4471-a8b6-de058a25f998" + "c45d5deb-a633-4b44-826d-33732343b250" ], "x-ms-correlation-request-id": [ - "7d4770ce-acb1-4471-a8b6-de058a25f998" + "c45d5deb-a633-4b44-826d-33732343b250" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062822Z:7d4770ce-acb1-4471-a8b6-de058a25f998" + "WESTUS:20230217T010324Z:c45d5deb-a633-4b44-826d-33732343b250" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1203,10 +1203,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:28:22 GMT" + "Fri, 17 Feb 2023 01:03:24 GMT" ], "Content-Length": [ - "640" + "638" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1215,26 +1215,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXy2w=\",\r\n \"name\": \"ps9178\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps9178.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00236210\"\r\n },\r\n \"resourcegroup\": \"ps2974\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfCOk=\",\r\n \"name\": \"ps8543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8543.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4BC\"\r\n },\r\n \"resourcegroup\": \"ps147\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/IotHubs/ps2609?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI2MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/IotHubs/ps5842?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzNTg0Mj9hcGktdmVyc2lvbj0yMDIxLTA3LTAy", "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": [ - "4dec97f8-76a9-46f4-ba7b-1fe9078c6588" + "dd7fbba9-2738-49e7-978f-1e35a25c6e21" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1243,6 +1242,7 @@ "85" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1251,7 +1251,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfYzk4OTVkYmUtYzYwZC00NzE5LWFhZTUtZTBjNDcyMGVlNWMx?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfZWZkNzU2MmMtMjg4MC00OGVhLTgyZjMtNjE5ZDQzNWNlMWRhO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1260,13 +1260,13 @@ "4999" ], "x-ms-request-id": [ - "f7e3185b-d20d-4ee7-ae72-552dac81e4bc" + "35ba95dd-5d18-4c3b-b238-2809b91816a7" ], "x-ms-correlation-request-id": [ - "f7e3185b-d20d-4ee7-ae72-552dac81e4bc" + "35ba95dd-5d18-4c3b-b238-2809b91816a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062409Z:f7e3185b-d20d-4ee7-ae72-552dac81e4bc" + "WESTCENTRALUS:20230217T005842Z:35ba95dd-5d18-4c3b-b238-2809b91816a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1275,10 +1275,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:24:09 GMT" + "Fri, 17 Feb 2023 00:58:42 GMT" ], "Content-Length": [ - "619" + "460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1287,34 +1287,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/IotHubs/ps2609\",\r\n \"name\": \"ps2609\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2974\",\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/IotHubs/ps5842\",\r\n \"name\": \"ps5842\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps147\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/IotHubs/ps2609?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI2MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/IotHubs/ps5842?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzNTg0Mj9hcGktdmVyc2lvbj0yMDIxLTA3LTAy", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAACrvXvIU=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"KJtd+yuhyOvl0hA2f8p1xosugIjIvGnPwe4LhKCuKO8=\",\r\n \"secondaryKey\": \"c6+lWegTivSArFtqS95IsvzpclekSbbN7JwJhv1ub+c=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Oxj3fYo+yUtO2M7bpJPjYHmmb1mI3l0ZPLH0mz//TPs=\",\r\n \"secondaryKey\": \"Uryny8mGMbEQYcBXciKcreGT37fTEC328tk5dolQwlE=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"BU6egA8aj+VQVBzFphypIZRLf+yENLgkKo328OaxQmo=\",\r\n \"secondaryKey\": \"a7uexogU0nezo9maaxzmjThuD3mqQ6Z6XFmiw684Y98=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"erKUCMsL44YnOx2SS6s+VRH7vnvKtDdzJL5RPt1Yk2E=\",\r\n \"secondaryKey\": \"xt1cWeofQyU7/TGiOTV8edcWDoo2vq8VEWvoZZ6fw2Q=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Cu5x7YSNcUzUmdj0tF1BYlQZ11fuEOyNiD1zN+tnGic=\",\r\n \"secondaryKey\": \"csYMfpqRs8O4seh7SqD31xrM+vMobAhKFvnl81c+g+Y=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"ServiceConnect\"\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 \"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\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f2c428f4-f51a-49b4-b116-506f42342d5e" + "a202d46a-4891-416e-91c7-20dde2156202" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2704" + "2790" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAADHxYBVA=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\r\n }\r\n ],\r\n \"allowedFqdnList\": [],\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 },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"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 \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1323,22 +1323,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfMThiMDhmYzAtNTBhNy00ZTExLTkyYzAtZGE0MGJmNTFiZmRi?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfMTY5MTJlY2QtOGQyMC00ZDY2LTgwYjUtZDBlNDgwMzVlNmNkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4998" + "4999" ], "x-ms-request-id": [ - "d3758744-9185-414e-ad6a-735367ce7ed9" + "600ad4e6-9427-417e-a3c5-799172ba6ad1" ], "x-ms-correlation-request-id": [ - "d3758744-9185-414e-ad6a-735367ce7ed9" + "600ad4e6-9427-417e-a3c5-799172ba6ad1" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062615Z:d3758744-9185-414e-ad6a-735367ce7ed9" + "WESTUS:20230217T010118Z:600ad4e6-9427-417e-a3c5-799172ba6ad1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1347,10 +1347,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:26:15 GMT" + "Fri, 17 Feb 2023 01:01:17 GMT" ], "Content-Length": [ - "4128" + "4078" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1359,25 +1359,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/IotHubs/ps2609\",\r\n \"name\": \"ps2609\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2974\",\r\n \"etag\": \"AAAACrvXvIU=\",\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\": \"KJtd+yuhyOvl0hA2f8p1xosugIjIvGnPwe4LhKCuKO8=\",\r\n \"secondaryKey\": \"c6+lWegTivSArFtqS95IsvzpclekSbbN7JwJhv1ub+c=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Oxj3fYo+yUtO2M7bpJPjYHmmb1mI3l0ZPLH0mz//TPs=\",\r\n \"secondaryKey\": \"Uryny8mGMbEQYcBXciKcreGT37fTEC328tk5dolQwlE=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"BU6egA8aj+VQVBzFphypIZRLf+yENLgkKo328OaxQmo=\",\r\n \"secondaryKey\": \"a7uexogU0nezo9maaxzmjThuD3mqQ6Z6XFmiw684Y98=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"erKUCMsL44YnOx2SS6s+VRH7vnvKtDdzJL5RPt1Yk2E=\",\r\n \"secondaryKey\": \"xt1cWeofQyU7/TGiOTV8edcWDoo2vq8VEWvoZZ6fw2Q=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Cu5x7YSNcUzUmdj0tF1BYlQZ11fuEOyNiD1zN+tnGic=\",\r\n \"secondaryKey\": \"csYMfpqRs8O4seh7SqD31xrM+vMobAhKFvnl81c+g+Y=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"IvsZxsE+j165Gj/2PM+3g2MqaVHheTQzc0cK6ER7l8s=\",\r\n \"secondaryKey\": \"NDGVJz6CkWYgDVKTIsYUH8Zs+9QDxXgXJuAbGFlCg8A=\",\r\n \"rights\": \"ServiceConnect\"\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\": \"ps2609-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps2609-8389078-1a88ffb098.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"scaleunitsend-6d9cd2ab-ecb4-423f-a836-c3e0bbe05e6a-iothub\",\r\n \"PrimaryKey\": \"SOKhrlyCX5roYpwaVdSAI1JlFad7hoCM6LImsSaBesE=\",\r\n \"SecondaryKey\": \"TlHUHZFyewAYkARpoe0W8ZaC/GjmGPr9MKQv4B2t0yo=\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:25:32 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:25:32 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"owner-98fbb909-8c69-4bcc-9f34-26471134aa38-iothub\",\r\n \"PrimaryKey\": \"CN/diz4Phu+HzySPnnAWK8JwkHSzC9darvzRI1LZK3o=\",\r\n \"SecondaryKey\": \"buSdm3xqsjoO5ffab73jS1WtXmZSFQx2tlWBxrJYBrI=\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:25:32 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:25:32 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"KJtd+yuhyOvl0hA2f8p1xosugIjIvGnPwe4LhKCuKO8=\",\r\n \"SecondaryKey\": \"c6+lWegTivSArFtqS95IsvzpclekSbbN7JwJhv1ub+c=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:25:32 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:25:32 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"Oxj3fYo+yUtO2M7bpJPjYHmmb1mI3l0ZPLH0mz//TPs=\",\r\n \"SecondaryKey\": \"Uryny8mGMbEQYcBXciKcreGT37fTEC328tk5dolQwlE=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:25:32 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:25: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 \"storageContainers\": [],\r\n \"cosmosDBSqlCollections\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/IotHubs/ps5842\",\r\n \"name\": \"ps5842\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps147\",\r\n \"etag\": \"AAAADHxYBVA=\",\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\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\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\": \"ps5842-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps5842-24621316-1be52bc717.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"scaleunitsend-e28aa296-ab5f-45fe-8e3d-483fa96554d1-iothub\",\r\n \"PrimaryKey\": \"maqz/JpviEu1h35GmWGwZ7HRkyV7qH58Y8LqwcH72oE=\",\r\n \"SecondaryKey\": \"wggdtdMa30I6fAgjxrMuhRZneqc3R3FZfe0FAYQ2w9Q=\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 01:00:33 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 01:00:33 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"owner-8c988284-6552-4fde-b603-521ab3a4a859-iothub\",\r\n \"PrimaryKey\": \"TI8mbAtNB8D6wuutKDxI3XIufnlMvqaUSrSh+LY5C2I=\",\r\n \"SecondaryKey\": \"IK8kmDwQje4ITQSd3DY3dWcn8i5b1XbTDHh7ABP0K34=\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 01:00:33 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 01:00:33 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"DB+BV33X++95N2Uapcse3gWyQjdKwE96NP+S32hrEXQ=\",\r\n \"SecondaryKey\": \"g/UcqZ0OWlfDTnojaUZXqc2uceg2SZDT8kLa8q3GVbE=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 01:00:33 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 01:00:33 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"IXBrLGc8QbQPAY+rQO1LdaUJLDZXSLgXoAjGNnIhSEA=\",\r\n \"SecondaryKey\": \"TaJrikKvhB7WTiT+eVIrD+9b2fMHyYkYRp0ukeovOp0=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 01:00:33 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 01:00: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 \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfYzk4OTVkYmUtYzYwZC00NzE5LWFhZTUtZTBjNDcyMGVlNWMx?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWXprNE9UVmtZbVV0WXpZd1pDMDBOekU1TFdGaFpUVXRaVEJqTkRjeU1HVmxOV014P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfZWZkNzU2MmMtMjg4MC00OGVhLTgyZjMtNjE5ZDQzNWNlMWRhO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWldaa056VTJNbU10TWpnNE1DMDBPR1ZoTFRneVpqTXROakU1WkRRek5XTmxNV1JoTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4dec97f8-76a9-46f4-ba7b-1fe9078c6588" + "dd7fbba9-2738-49e7-978f-1e35a25c6e21" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1389,16 +1389,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-request-id": [ - "fa0e484b-8f63-428f-9f54-b45d45edcfbe" + "aed1b2f7-e3f4-4429-8030-3b83e72ca233" ], "x-ms-correlation-request-id": [ - "fa0e484b-8f63-428f-9f54-b45d45edcfbe" + "aed1b2f7-e3f4-4429-8030-3b83e72ca233" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062439Z:fa0e484b-8f63-428f-9f54-b45d45edcfbe" + "WESTCENTRALUS:20230217T005912Z:aed1b2f7-e3f4-4429-8030-3b83e72ca233" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1407,7 +1407,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:24:38 GMT" + "Fri, 17 Feb 2023 00:59:12 GMT" ], "Content-Length": [ "20" @@ -1423,21 +1423,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfYzk4OTVkYmUtYzYwZC00NzE5LWFhZTUtZTBjNDcyMGVlNWMx?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWXprNE9UVmtZbVV0WXpZd1pDMDBOekU1TFdGaFpUVXRaVEJqTkRjeU1HVmxOV014P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfZWZkNzU2MmMtMjg4MC00OGVhLTgyZjMtNjE5ZDQzNWNlMWRhO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWldaa056VTJNbU10TWpnNE1DMDBPR1ZoTFRneVpqTXROakU1WkRRek5XTmxNV1JoTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4dec97f8-76a9-46f4-ba7b-1fe9078c6588" + "dd7fbba9-2738-49e7-978f-1e35a25c6e21" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1449,16 +1449,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-request-id": [ - "e16c7604-8e5e-49f9-8d9e-bd5f8c6dc60b" + "c17ec546-0e22-49c3-9e65-6ae64ef0fdba" ], "x-ms-correlation-request-id": [ - "e16c7604-8e5e-49f9-8d9e-bd5f8c6dc60b" + "c17ec546-0e22-49c3-9e65-6ae64ef0fdba" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062510Z:e16c7604-8e5e-49f9-8d9e-bd5f8c6dc60b" + "WESTCENTRALUS:20230217T005942Z:c17ec546-0e22-49c3-9e65-6ae64ef0fdba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1467,7 +1467,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:25:09 GMT" + "Fri, 17 Feb 2023 00:59:41 GMT" ], "Content-Length": [ "20" @@ -1483,21 +1483,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfYzk4OTVkYmUtYzYwZC00NzE5LWFhZTUtZTBjNDcyMGVlNWMx?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWXprNE9UVmtZbVV0WXpZd1pDMDBOekU1TFdGaFpUVXRaVEJqTkRjeU1HVmxOV014P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfZWZkNzU2MmMtMjg4MC00OGVhLTgyZjMtNjE5ZDQzNWNlMWRhO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWldaa056VTJNbU10TWpnNE1DMDBPR1ZoTFRneVpqTXROakU1WkRRek5XTmxNV1JoTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4dec97f8-76a9-46f4-ba7b-1fe9078c6588" + "dd7fbba9-2738-49e7-978f-1e35a25c6e21" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1509,16 +1509,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-request-id": [ - "882d7f17-bfdd-4e00-9147-5b3951cc6607" + "7841a58d-1ec0-49f9-b08e-032b8f866d4a" ], "x-ms-correlation-request-id": [ - "882d7f17-bfdd-4e00-9147-5b3951cc6607" + "7841a58d-1ec0-49f9-b08e-032b8f866d4a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062540Z:882d7f17-bfdd-4e00-9147-5b3951cc6607" + "WESTCENTRALUS:20230217T010012Z:7841a58d-1ec0-49f9-b08e-032b8f866d4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1527,7 +1527,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:25:39 GMT" + "Fri, 17 Feb 2023 01:00:11 GMT" ], "Content-Length": [ "20" @@ -1543,21 +1543,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfYzk4OTVkYmUtYzYwZC00NzE5LWFhZTUtZTBjNDcyMGVlNWMx?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWXprNE9UVmtZbVV0WXpZd1pDMDBOekU1TFdGaFpUVXRaVEJqTkRjeU1HVmxOV014P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfZWZkNzU2MmMtMjg4MC00OGVhLTgyZjMtNjE5ZDQzNWNlMWRhO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWldaa056VTJNbU10TWpnNE1DMDBPR1ZoTFRneVpqTXROakU1WkRRek5XTmxNV1JoTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4dec97f8-76a9-46f4-ba7b-1fe9078c6588" + "dd7fbba9-2738-49e7-978f-1e35a25c6e21" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1569,16 +1569,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-request-id": [ - "d0f6f621-f655-4eed-a658-71f39039fa14" + "e403bbd3-b0f5-43ab-8bcc-55e4d16fec73" ], "x-ms-correlation-request-id": [ - "d0f6f621-f655-4eed-a658-71f39039fa14" + "e403bbd3-b0f5-43ab-8bcc-55e4d16fec73" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062610Z:d0f6f621-f655-4eed-a658-71f39039fa14" + "WESTCENTRALUS:20230217T010042Z:e403bbd3-b0f5-43ab-8bcc-55e4d16fec73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1587,10 +1587,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:26:10 GMT" + "Fri, 17 Feb 2023 01:00:42 GMT" ], "Content-Length": [ - "22" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1599,25 +1599,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/IotHubs/ps2609?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI2MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfZWZkNzU2MmMtMjg4MC00OGVhLTgyZjMtNjE5ZDQzNWNlMWRhO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWldaa056VTJNbU10TWpnNE1DMDBPR1ZoTFRneVpqTXROakU1WkRRek5XTmxNV1JoTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4dec97f8-76a9-46f4-ba7b-1fe9078c6588" + "dd7fbba9-2738-49e7-978f-1e35a25c6e21" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1629,16 +1629,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-request-id": [ - "939ae110-5cad-4db5-803c-14791b51b50d" + "e450561a-40c3-4fb4-8c45-7c1d53484e2a" ], "x-ms-correlation-request-id": [ - "939ae110-5cad-4db5-803c-14791b51b50d" + "e450561a-40c3-4fb4-8c45-7c1d53484e2a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062611Z:939ae110-5cad-4db5-803c-14791b51b50d" + "WESTCENTRALUS:20230217T010112Z:e450561a-40c3-4fb4-8c45-7c1d53484e2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1647,10 +1647,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:26:10 GMT" + "Fri, 17 Feb 2023 01:01:12 GMT" ], "Content-Length": [ - "1487" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1659,28 +1659,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/IotHubs/ps2609\",\r\n \"name\": \"ps2609\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2974\",\r\n \"etag\": \"AAAACrvXvIU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2609.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2609\",\r\n \"endpoint\": \"sb://iothub-ns-ps2609-8389078-1a88ffb098.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/IotHubs/ps2609?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI2MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/IotHubs/ps5842?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzNTg0Mj9hcGktdmVyc2lvbj0yMDIxLTA3LTAy", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4dec97f8-76a9-46f4-ba7b-1fe9078c6588" - ], - "Accept-Language": [ - "en-US" + "dd7fbba9-2738-49e7-978f-1e35a25c6e21" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1692,16 +1689,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-request-id": [ - "06301ef0-7435-4af7-b3ba-7dc81cdf1daa" + "303d86b6-468c-4585-9193-2d9f5fda5ff1" ], "x-ms-correlation-request-id": [ - "06301ef0-7435-4af7-b3ba-7dc81cdf1daa" + "303d86b6-468c-4585-9193-2d9f5fda5ff1" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062611Z:06301ef0-7435-4af7-b3ba-7dc81cdf1daa" + "WESTCENTRALUS:20230217T010113Z:303d86b6-468c-4585-9193-2d9f5fda5ff1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1710,10 +1707,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:26:11 GMT" + "Fri, 17 Feb 2023 01:01:13 GMT" ], "Content-Length": [ - "1487" + "1560" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1722,28 +1719,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/IotHubs/ps2609\",\r\n \"name\": \"ps2609\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2974\",\r\n \"etag\": \"AAAACrvXvIU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2609.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2609\",\r\n \"endpoint\": \"sb://iothub-ns-ps2609-8389078-1a88ffb098.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/IotHubs/ps5842\",\r\n \"name\": \"ps5842\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps147\",\r\n \"etag\": \"AAAADHxYBVA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5842.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5842\",\r\n \"endpoint\": \"sb://iothub-ns-ps5842-24621316-1be52bc717.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T00:58:41.42Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/IotHubs/ps2609?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI2MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/IotHubs/ps5842?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzNTg0Mj9hcGktdmVyc2lvbj0yMDIxLTA3LTAy", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2c428f4-f51a-49b4-b116-506f42342d5e" + "dd7fbba9-2738-49e7-978f-1e35a25c6e21" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1755,16 +1752,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-request-id": [ - "fdc4ec46-a157-4cbc-b980-e8dd8c701999" + "00a90656-9297-4e19-be27-8bd1a89cd5dd" ], "x-ms-correlation-request-id": [ - "fdc4ec46-a157-4cbc-b980-e8dd8c701999" + "00a90656-9297-4e19-be27-8bd1a89cd5dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062612Z:fdc4ec46-a157-4cbc-b980-e8dd8c701999" + "WESTCENTRALUS:20230217T010114Z:00a90656-9297-4e19-be27-8bd1a89cd5dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1773,10 +1770,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:26:11 GMT" + "Fri, 17 Feb 2023 01:01:14 GMT" ], "Content-Length": [ - "1487" + "1560" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1785,25 +1782,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/IotHubs/ps2609\",\r\n \"name\": \"ps2609\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2974\",\r\n \"etag\": \"AAAACrvXvIU=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2609.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2609\",\r\n \"endpoint\": \"sb://iothub-ns-ps2609-8389078-1a88ffb098.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/IotHubs/ps5842\",\r\n \"name\": \"ps5842\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps147\",\r\n \"etag\": \"AAAADHxYBVA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5842.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5842\",\r\n \"endpoint\": \"sb://iothub-ns-ps5842-24621316-1be52bc717.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T00:58:41.42Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/IotHubs/ps2609?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI2MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/IotHubs/ps5842?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzNTg0Mj9hcGktdmVyc2lvbj0yMDIxLTA3LTAy", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2c428f4-f51a-49b4-b116-506f42342d5e" + "a202d46a-4891-416e-91c7-20dde2156202" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1815,16 +1815,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-request-id": [ - "59622277-3e4b-4cfd-b082-16152768e5ed" + "4a718120-10c6-42d8-8791-f88ab6d217c3" ], "x-ms-correlation-request-id": [ - "59622277-3e4b-4cfd-b082-16152768e5ed" + "4a718120-10c6-42d8-8791-f88ab6d217c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062646Z:59622277-3e4b-4cfd-b082-16152768e5ed" + "WESTUS:20230217T010115Z:4a718120-10c6-42d8-8791-f88ab6d217c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1833,10 +1833,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:26:45 GMT" + "Fri, 17 Feb 2023 01:01:14 GMT" ], "Content-Length": [ - "1487" + "1560" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1845,28 +1845,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/IotHubs/ps2609\",\r\n \"name\": \"ps2609\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2974\",\r\n \"etag\": \"AAAACrvZ0Ew=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps2609.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps2609\",\r\n \"endpoint\": \"sb://iothub-ns-ps2609-8389078-1a88ffb098.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/IotHubs/ps5842\",\r\n \"name\": \"ps5842\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps147\",\r\n \"etag\": \"AAAADHxYBVA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5842.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5842\",\r\n \"endpoint\": \"sb://iothub-ns-ps5842-24621316-1be52bc717.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T00:58:41.42Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/IotHubs/ps2609/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI2MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/IotHubs/ps5842?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzNTg0Mj9hcGktdmVyc2lvbj0yMDIxLTA3LTAy", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f2c428f4-f51a-49b4-b116-506f42342d5e" - ], - "Accept-Language": [ - "en-US" + "a202d46a-4891-416e-91c7-20dde2156202" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1877,17 +1874,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-request-id": [ - "2bec7477-d357-4db0-8586-8ddb5c0e3778" + "175693f3-0e8c-442b-9e97-f12012283e67" ], "x-ms-correlation-request-id": [ - "2bec7477-d357-4db0-8586-8ddb5c0e3778" + "175693f3-0e8c-442b-9e97-f12012283e67" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062612Z:2bec7477-d357-4db0-8586-8ddb5c0e3778" + "WESTUS:20230217T010149Z:175693f3-0e8c-442b-9e97-f12012283e67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1896,10 +1893,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:26:12 GMT" + "Fri, 17 Feb 2023 01:01:48 GMT" ], "Content-Length": [ - "905" + "1560" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1908,28 +1905,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"KJtd+yuhyOvl0hA2f8p1xosugIjIvGnPwe4LhKCuKO8=\",\r\n \"secondaryKey\": \"c6+lWegTivSArFtqS95IsvzpclekSbbN7JwJhv1ub+c=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Oxj3fYo+yUtO2M7bpJPjYHmmb1mI3l0ZPLH0mz//TPs=\",\r\n \"secondaryKey\": \"Uryny8mGMbEQYcBXciKcreGT37fTEC328tk5dolQwlE=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"BU6egA8aj+VQVBzFphypIZRLf+yENLgkKo328OaxQmo=\",\r\n \"secondaryKey\": \"a7uexogU0nezo9maaxzmjThuD3mqQ6Z6XFmiw684Y98=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"erKUCMsL44YnOx2SS6s+VRH7vnvKtDdzJL5RPt1Yk2E=\",\r\n \"secondaryKey\": \"xt1cWeofQyU7/TGiOTV8edcWDoo2vq8VEWvoZZ6fw2Q=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Cu5x7YSNcUzUmdj0tF1BYlQZ11fuEOyNiD1zN+tnGic=\",\r\n \"secondaryKey\": \"csYMfpqRs8O4seh7SqD31xrM+vMobAhKFvnl81c+g+Y=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/IotHubs/ps5842\",\r\n \"name\": \"ps5842\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps147\",\r\n \"etag\": \"AAAADHxYBjI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps5842.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5842\",\r\n \"endpoint\": \"sb://iothub-ns-ps5842-24621316-1be52bc717.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T00:58:41.42Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/IotHubs/ps2609/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI2MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/IotHubs/ps5842/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzNTg0Mi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDIxLTA3LTAy", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2c428f4-f51a-49b4-b116-506f42342d5e" + "a202d46a-4891-416e-91c7-20dde2156202" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1941,16 +1938,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "4967ace5-7696-47b2-abac-beec4e79dae2" + "4805e0eb-5967-4d22-a0fd-c72c47761905" ], "x-ms-correlation-request-id": [ - "4967ace5-7696-47b2-abac-beec4e79dae2" + "4805e0eb-5967-4d22-a0fd-c72c47761905" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062646Z:4967ace5-7696-47b2-abac-beec4e79dae2" + "WESTUS:20230217T010115Z:4805e0eb-5967-4d22-a0fd-c72c47761905" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1959,10 +1956,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:26:45 GMT" + "Fri, 17 Feb 2023 01:01:14 GMT" ], "Content-Length": [ - "1078" + "905" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1971,25 +1968,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"KJtd+yuhyOvl0hA2f8p1xosugIjIvGnPwe4LhKCuKO8=\",\r\n \"secondaryKey\": \"c6+lWegTivSArFtqS95IsvzpclekSbbN7JwJhv1ub+c=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Oxj3fYo+yUtO2M7bpJPjYHmmb1mI3l0ZPLH0mz//TPs=\",\r\n \"secondaryKey\": \"Uryny8mGMbEQYcBXciKcreGT37fTEC328tk5dolQwlE=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"BU6egA8aj+VQVBzFphypIZRLf+yENLgkKo328OaxQmo=\",\r\n \"secondaryKey\": \"a7uexogU0nezo9maaxzmjThuD3mqQ6Z6XFmiw684Y98=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"erKUCMsL44YnOx2SS6s+VRH7vnvKtDdzJL5RPt1Yk2E=\",\r\n \"secondaryKey\": \"xt1cWeofQyU7/TGiOTV8edcWDoo2vq8VEWvoZZ6fw2Q=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Cu5x7YSNcUzUmdj0tF1BYlQZ11fuEOyNiD1zN+tnGic=\",\r\n \"secondaryKey\": \"csYMfpqRs8O4seh7SqD31xrM+vMobAhKFvnl81c+g+Y=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"IvsZxsE+j165Gj/2PM+3g2MqaVHheTQzc0cK6ER7l8s=\",\r\n \"secondaryKey\": \"NDGVJz6CkWYgDVKTIsYUH8Zs+9QDxXgXJuAbGFlCg8A=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfMThiMDhmYzAtNTBhNy00ZTExLTkyYzAtZGE0MGJmNTFiZmRi?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTVRoaU1EaG1ZekF0TlRCaE55MDBaVEV4TFRreVl6QXRaR0UwTUdKbU5URmlabVJpP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/IotHubs/ps5842/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzNTg0Mi9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDIxLTA3LTAy", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "f2c428f4-f51a-49b4-b116-506f42342d5e" + "a202d46a-4891-416e-91c7-20dde2156202" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2000,17 +2000,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-request-id": [ - "1194616c-1315-46c4-8ddb-b5ad7d838325" + "506b1365-7615-40a7-a9cd-92f31848d431" ], "x-ms-correlation-request-id": [ - "1194616c-1315-46c4-8ddb-b5ad7d838325" + "506b1365-7615-40a7-a9cd-92f31848d431" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062645Z:1194616c-1315-46c4-8ddb-b5ad7d838325" + "WESTUS:20230217T010149Z:506b1365-7615-40a7-a9cd-92f31848d431" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2019,10 +2019,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:26:44 GMT" + "Fri, 17 Feb 2023 01:01:48 GMT" ], "Content-Length": [ - "22" + "1093" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2031,28 +2031,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/IotHubs/ps2609/IotHubKeys/ServiceKey/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczI2MDkvSW90SHViS2V5cy9TZXJ2aWNlS2V5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", - "RequestMethod": "POST", - "RequestBody": "", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfMTY5MTJlY2QtOGQyMC00ZDY2LTgwYjUtZDBlNDgwMzVlNmNkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTVRZNU1USmxZMlF0T0dReU1DMDBaRFkyTFRnd1lqVXRaREJsTkRnd016VmxObU5rTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8b0e26d6-2b00-498a-ac09-5cb75c92edfa" - ], - "Accept-Language": [ - "en-US" + "a202d46a-4891-416e-91c7-20dde2156202" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2063,17 +2060,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-request-id": [ - "d0bea857-a7a9-4459-885b-be39ffa60eef" + "d4a955dd-751d-4a66-8b72-b0c791c1b6a0" ], "x-ms-correlation-request-id": [ - "d0bea857-a7a9-4459-885b-be39ffa60eef" + "d4a955dd-751d-4a66-8b72-b0c791c1b6a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062646Z:d0bea857-a7a9-4459-885b-be39ffa60eef" + "WESTUS:20230217T010148Z:d4a955dd-751d-4a66-8b72-b0c791c1b6a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2082,10 +2079,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:26:45 GMT" + "Fri, 17 Feb 2023 01:01:47 GMT" ], "Content-Length": [ - "172" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2094,25 +2091,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"IvsZxsE+j165Gj/2PM+3g2MqaVHheTQzc0cK6ER7l8s=\",\r\n \"secondaryKey\": \"NDGVJz6CkWYgDVKTIsYUH8Zs+9QDxXgXJuAbGFlCg8A=\",\r\n \"rights\": \"ServiceConnect\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178/operationResults/b3NfaWRfYWM0Y2Y3NzctZmZiNi00ZGI1LWEwOTktNzQ0N2M5ZWUwOGEx?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZZV00wWTJZM056Y3RabVppTmkwMFpHSTFMV0V3T1RrdE56UTBOMk01WldVd09HRXg/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/IotHubs/ps5842/IotHubKeys/ServiceKey/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9Jb3RIdWJzL3BzNTg0Mi9Jb3RIdWJLZXlzL1NlcnZpY2VLZXkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "44d66394-572c-42e9-bc38-ecb22229af3d" + "8e2df509-3a33-4ce5-9ef0-3cddf43f54d8" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2123,17 +2123,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "55d7be13-a9b1-4366-9b81-577c9ea83411" + "57762609-12cf-427a-bdce-3f460ac648d2" ], "x-ms-correlation-request-id": [ - "55d7be13-a9b1-4366-9b81-577c9ea83411" + "57762609-12cf-427a-bdce-3f460ac648d2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062718Z:55d7be13-a9b1-4366-9b81-577c9ea83411" + "WESTUS:20230217T010149Z:57762609-12cf-427a-bdce-3f460ac648d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2142,10 +2142,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:27:17 GMT" + "Fri, 17 Feb 2023 01:01:49 GMT" ], "Content-Length": [ - "22" + "187" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2154,25 +2154,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178/operationResults/b3NfaWRfNjM5Y2E4ZjgtODA4ZS00MDMwLTkzOTUtNGU0MzA4YzU5MzBi?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZOak01WTJFNFpqZ3RPREE0WlMwME1ETXdMVGt6T1RVdE5HVTBNekE0WXpVNU16Qmk/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543/operationResults/aWQ9b3NfaWRfZDVkMmM4OTMtMTUyYS00YjA3LThlMmMtN2QxZTg1MmMwNTVmO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDMvb3BlcmF0aW9uUmVzdWx0cy9hV1E5YjNOZmFXUmZaRFZrTW1NNE9UTXRNVFV5WVMwMFlqQTNMVGhsTW1NdE4yUXhaVGcxTW1Nd05UVm1PM0psWjJsdmJqMTNaWE4wZFhNPT9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a25d331-f21a-4244-b74e-3d82dc2ed8ef" + "de37e25c-a5ed-4132-8322-c7cb941f36ab" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2184,16 +2184,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "0c861a2a-4de7-4b38-92bd-e75c900e2a47" + "2ecf6a5a-31ed-4510-81d6-dcc6ec31486f" ], "x-ms-correlation-request-id": [ - "0c861a2a-4de7-4b38-92bd-e75c900e2a47" + "2ecf6a5a-31ed-4510-81d6-dcc6ec31486f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062750Z:0c861a2a-4de7-4b38-92bd-e75c900e2a47" + "WESTUS:20230217T010220Z:2ecf6a5a-31ed-4510-81d6-dcc6ec31486f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2202,7 +2202,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:27:50 GMT" + "Fri, 17 Feb 2023 01:02:20 GMT" ], "Content-Length": [ "22" @@ -2218,21 +2218,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2974/providers/Microsoft.Devices/provisioningServices/ps9178/operationResults/b3NfaWRfMWNmNDZmMzUtY2NiNS00NTBkLWI1NmUtMTYzMGM4MWI5ZGNl?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM5MTc4L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNV05tTkRabU16VXRZMk5pTlMwME5UQmtMV0kxTm1VdE1UWXpNR000TVdJNVpHTmw/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543/operationResults/aWQ9b3NfaWRfMzZmOGI0ZTctMzU3ZC00YjBhLTgzYjUtMDM2MzBjOTU5MzU4O3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDMvb3BlcmF0aW9uUmVzdWx0cy9hV1E5YjNOZmFXUmZNelptT0dJMFpUY3RNelUzWkMwMFlqQmhMVGd6WWpVdE1ETTJNekJqT1RVNU16VTRPM0psWjJsdmJqMTNaWE4wZFhNPT9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64ff12cb-e03c-4321-b058-10d227425f57" + "d76fc159-e93b-4e14-89c8-f56fcc54d65d" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2244,16 +2244,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-request-id": [ - "01a9ed8e-137c-4cf3-b825-e6465aa90062" + "e62a986c-ff98-4f8f-b4c5-e60ad3ab985f" ], "x-ms-correlation-request-id": [ - "01a9ed8e-137c-4cf3-b825-e6465aa90062" + "e62a986c-ff98-4f8f-b4c5-e60ad3ab985f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062822Z:01a9ed8e-137c-4cf3-b825-e6465aa90062" + "WESTUS:20230217T010252Z:e62a986c-ff98-4f8f-b4c5-e60ad3ab985f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2262,7 +2262,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:28:21 GMT" + "Fri, 17 Feb 2023 01:02:51 GMT" ], "Content-Length": [ "22" @@ -2278,81 +2278,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps2974?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzMjk3ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps147/providers/Microsoft.Devices/provisioningServices/ps8543/operationResults/aWQ9b3NfaWRfNGE5OTgxZDUtMDBlZC00MmVjLTk5MDctN2QwNWY1NjA3YWExO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczg1NDMvb3BlcmF0aW9uUmVzdWx0cy9hV1E5YjNOZmFXUmZOR0U1T1RneFpEVXRNREJsWkMwME1tVmpMVGs1TURjdE4yUXdOV1kxTmpBM1lXRXhPM0psWjJsdmJqMTNaWE4wZFhNPT9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "55094296-9dc6-49ef-881e-599ff9833858" - ], - "Accept-Language": [ - "en-US" + "d135895e-a848-4e1e-9064-f2777ed62aec" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "b9f78f74-3cdc-4e3c-9dd2-6d4954f83cbe" - ], - "x-ms-correlation-request-id": [ - "b9f78f74-3cdc-4e3c-9dd2-6d4954f83cbe" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T062823Z:b9f78f74-3cdc-4e3c-9dd2-6d4954f83cbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:28:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2360,23 +2300,20 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-request-id": [ - "e2e7b3c4-b1be-4401-9781-5edc89c4309e" + "e2695e83-0fe0-4578-8a21-405138125200" ], "x-ms-correlation-request-id": [ - "e2e7b3c4-b1be-4401-9781-5edc89c4309e" + "e2695e83-0fe0-4578-8a21-405138125200" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062838Z:e2e7b3c4-b1be-4401-9781-5edc89c4309e" + "WESTUS:20230217T010324Z:e2695e83-0fe0-4578-8a21-405138125200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2385,202 +2322,40 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:28:38 GMT" - ], - "Expires": [ - "-1" + "Fri, 17 Feb 2023 01:03:23 GMT" ], "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "d5ae5da6-8387-41ab-9658-f57a11215bcf" - ], - "x-ms-correlation-request-id": [ - "d5ae5da6-8387-41ab-9658-f57a11215bcf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T062853Z:d5ae5da6-8387-41ab-9658-f57a11215bcf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "22" ], - "Date": [ - "Wed, 24 Feb 2021 06:28:52 GMT" + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps147?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzMTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "61cc3885-5f6c-4e1b-959c-e20ee1fedcf4" - ], - "x-ms-correlation-request-id": [ - "61cc3885-5f6c-4e1b-959c-e20ee1fedcf4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T062908Z:61cc3885-5f6c-4e1b-959c-e20ee1fedcf4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:29:08 GMT" + "x-ms-client-request-id": [ + "7e06c719-a5a3-4d97-a2ed-bbaf19c75612" ], - "Expires": [ - "-1" + "Accept-Language": [ + "en-US" ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "4113a45c-1960-4df2-bc28-ae742824a316" - ], - "x-ms-correlation-request-id": [ - "4113a45c-1960-4df2-bc28-ae742824a316" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T062923Z:4113a45c-1960-4df2-bc28-ae742824a316" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:29:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2589,22 +2364,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "b60f8fc5-128c-4350-881a-52a8f32e4f9f" + "5519bb0f-7866-4b95-899d-716c160957a3" ], "x-ms-correlation-request-id": [ - "b60f8fc5-128c-4350-881a-52a8f32e4f9f" + "5519bb0f-7866-4b95-899d-716c160957a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062938Z:b60f8fc5-128c-4350-881a-52a8f32e4f9f" + "WESTUS:20230217T010324Z:5519bb0f-7866-4b95-899d-716c160957a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2613,7 +2388,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:29:38 GMT" + "Fri, 17 Feb 2023 01:03:24 GMT" ], "Expires": [ "-1" @@ -2626,75 +2401,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFME55MVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "c6f7eb26-b08b-426d-9d68-17c31130661b" - ], - "x-ms-correlation-request-id": [ - "c6f7eb26-b08b-426d-9d68-17c31130661b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T062954Z:c6f7eb26-b08b-426d-9d68-17c31130661b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:29:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2703,22 +2421,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-request-id": [ - "46d10fb6-08c8-478b-a978-ee3ac0287340" + "d7e23575-b6b9-438c-acd8-0e3a1cbda49a" ], "x-ms-correlation-request-id": [ - "46d10fb6-08c8-478b-a978-ee3ac0287340" + "d7e23575-b6b9-438c-acd8-0e3a1cbda49a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063009Z:46d10fb6-08c8-478b-a978-ee3ac0287340" + "WESTUS:20230217T010339Z:d7e23575-b6b9-438c-acd8-0e3a1cbda49a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2727,7 +2445,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:30:08 GMT" + "Fri, 17 Feb 2023 01:03:39 GMT" ], "Expires": [ "-1" @@ -2740,18 +2458,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFME55MVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2760,22 +2478,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-request-id": [ - "02b2093b-da26-427c-9b31-db3824938401" + "98badbdd-0e67-4df4-b530-10933a36ef11" ], "x-ms-correlation-request-id": [ - "02b2093b-da26-427c-9b31-db3824938401" + "98badbdd-0e67-4df4-b530-10933a36ef11" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063024Z:02b2093b-da26-427c-9b31-db3824938401" + "WESTUS:20230217T010354Z:98badbdd-0e67-4df4-b530-10933a36ef11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2784,7 +2502,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:30:23 GMT" + "Fri, 17 Feb 2023 01:03:54 GMT" ], "Expires": [ "-1" @@ -2797,18 +2515,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFME55MVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2817,22 +2535,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-request-id": [ - "a8426495-bcd5-493d-b241-83698db5322e" + "d49c4d81-351f-4140-9939-fa8cfdc9413f" ], "x-ms-correlation-request-id": [ - "a8426495-bcd5-493d-b241-83698db5322e" + "d49c4d81-351f-4140-9939-fa8cfdc9413f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063039Z:a8426495-bcd5-493d-b241-83698db5322e" + "WESTUS:20230217T010409Z:d49c4d81-351f-4140-9939-fa8cfdc9413f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2841,7 +2559,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:30:38 GMT" + "Fri, 17 Feb 2023 01:04:09 GMT" ], "Expires": [ "-1" @@ -2854,18 +2572,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFME55MVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2874,22 +2592,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11996" ], "x-ms-request-id": [ - "5f2bb599-02d0-468b-a60e-323fd20b5a2b" + "a353f045-6ee3-48ba-9579-d72266500778" ], "x-ms-correlation-request-id": [ - "5f2bb599-02d0-468b-a60e-323fd20b5a2b" + "a353f045-6ee3-48ba-9579-d72266500778" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063054Z:5f2bb599-02d0-468b-a60e-323fd20b5a2b" + "WESTUS:20230217T010424Z:a353f045-6ee3-48ba-9579-d72266500778" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2898,7 +2616,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:30:54 GMT" + "Fri, 17 Feb 2023 01:04:24 GMT" ], "Expires": [ "-1" @@ -2911,18 +2629,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFME55MVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2931,16 +2649,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11995" ], "x-ms-request-id": [ - "e8d721c5-4e9f-4c37-bdb4-ca7e371e41f9" + "bcf02a72-2c6a-4c4f-b97f-20c975826b35" ], "x-ms-correlation-request-id": [ - "e8d721c5-4e9f-4c37-bdb4-ca7e371e41f9" + "bcf02a72-2c6a-4c4f-b97f-20c975826b35" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063109Z:e8d721c5-4e9f-4c37-bdb4-ca7e371e41f9" + "WESTUS:20230217T010440Z:bcf02a72-2c6a-4c4f-b97f-20c975826b35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2949,7 +2667,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:31:09 GMT" + "Fri, 17 Feb 2023 01:04:39 GMT" ], "Expires": [ "-1" @@ -2962,18 +2680,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5NzQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU56UXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFME55MVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2982,16 +2700,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11994" ], "x-ms-request-id": [ - "edec1b1e-c433-4384-80fa-3f457462cb06" + "143efbc3-567d-432d-98a8-d2c0c206a44d" ], "x-ms-correlation-request-id": [ - "edec1b1e-c433-4384-80fa-3f457462cb06" + "143efbc3-567d-432d-98a8-d2c0c206a44d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063109Z:edec1b1e-c433-4384-80fa-3f457462cb06" + "WESTUS:20230217T010440Z:143efbc3-567d-432d-98a8-d2c0c206a44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3000,7 +2718,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:31:09 GMT" + "Fri, 17 Feb 2023 01:04:40 GMT" ], "Expires": [ "-1" @@ -3015,9 +2733,9 @@ ], "Names": { "Test-AzureIotDpsLinkedHubLifeCycle": [ - "ps9178", - "ps2974", - "ps2609" + "ps8543", + "ps147", + "ps5842" ] }, "Variables": { diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsRegistrationTests/IotDpsRegistrationLifeCycle.json b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsRegistrationTests/IotDpsRegistrationLifeCycle.json index 02a48d4ec29c..e6720b3c9bc9 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsRegistrationTests/IotDpsRegistrationLifeCycle.json +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsRegistrationTests/IotDpsRegistrationLifeCycle.json @@ -4,21 +4,21 @@ "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f4c2994-b9c0-4c39-a29e-5655c55f17a7" + "d7ba9d07-7b30-4939-a993-03e07bb5d343" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11988" ], "x-ms-request-id": [ - "5b0e3188-0b36-4017-8a7e-b2e81b217b56" + "c5f9c0ec-e0b9-4561-96fb-4270c57beb3b" ], "x-ms-correlation-request-id": [ - "5b0e3188-0b36-4017-8a7e-b2e81b217b56" + "c5f9c0ec-e0b9-4561-96fb-4270c57beb3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061607Z:5b0e3188-0b36-4017-8a7e-b2e81b217b56" + "WESTCENTRALUS:20230217T010629Z:c5f9c0ec-e0b9-4561-96fb-4270c57beb3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:16:07 GMT" + "Fri, 17 Feb 2023 01:06:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,28 @@ "-1" ], "Content-Length": [ - "5586" + "9626" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\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 \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\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 \"2018-12-01-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 ],\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/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"roleDefinitionId\": \"d04fc6c0-fc10-4ab8-b7de-c979247c3b65\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"provisioningServiceOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-09-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations/provisioningServiceOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway EAST\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\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\": \"IotHubs/failover\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"Australia Central\"\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps9949?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzOTk0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps7728?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzNzcyOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "13248e92-7fb3-4c80-90dc-415cd6fc7211" + "a07e5b29-7b70-42a7-9e6a-e654cc7075ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -85,6 +84,7 @@ "29" ] }, + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "5edb76bb-443e-45b1-8d6f-bd81d71a31af" + "b57f7958-92b2-43c3-b436-c9362bd9f7e7" ], "x-ms-correlation-request-id": [ - "5edb76bb-443e-45b1-8d6f-bd81d71a31af" + "b57f7958-92b2-43c3-b436-c9362bd9f7e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061607Z:5edb76bb-443e-45b1-8d6f-bd81d71a31af" + "WESTCENTRALUS:20230217T010630Z:b57f7958-92b2-43c3-b436-c9362bd9f7e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:16:07 GMT" + "Fri, 17 Feb 2023 01:06:29 GMT" ], "Content-Length": [ "165" @@ -123,25 +123,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949\",\r\n \"name\": \"ps9949\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728\",\r\n \"name\": \"ps7728\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0ae699ca-7572-4b57-9e5a-3a79b6e9ab59" + "3d7e6817-6cbe-47b9-a021-f7cda1314691" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -151,6 +150,7 @@ "86" ] }, + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -159,22 +159,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/operationResults/b3NfaWRfMmY3Y2I2Y2UtNTZiMy00YTQ0LTllYzgtYjcxMDU1ZmZjY2I1?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/operationResults/aWQ9b3NfaWRfNTM5OTljMTAtMzQzZS00YzBlLWI4NjctNjQ4ZWExYWYyOTViO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4999" + "4998" ], "x-ms-request-id": [ - "a69d76c2-56bc-44c9-82c3-9d5809bf06af" + "51bc8caf-4212-4b84-8582-92c563c6007d" ], "x-ms-correlation-request-id": [ - "a69d76c2-56bc-44c9-82c3-9d5809bf06af" + "51bc8caf-4212-4b84-8582-92c563c6007d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061610Z:a69d76c2-56bc-44c9-82c3-9d5809bf06af" + "WESTCENTRALUS:20230217T010632Z:51bc8caf-4212-4b84-8582-92c563c6007d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,7 +183,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:16:09 GMT" + "Fri, 17 Feb 2023 01:06:32 GMT" ], "Content-Length": [ "462" @@ -195,25 +195,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAcXwkA=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=aJ4sRIc17DAhoXNsTVj45fKq8eUGk4ZaaIQSf+LN6s0=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "571ed154-59a2-450e-a4f9-4956ac38b409" + "07bc9c35-031f-4aaf-88d4-c8597daf708a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -223,6 +222,7 @@ "503" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAAABbfDSc=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -231,7 +231,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/operationResults/b3NfaWRfNDY3NDkxZjEtM2NjZS00MzYyLTkwNzctZTkzNzQxODlkNmE5?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/operationResults/aWQ9b3NfaWRfOTM3MGI4NTEtZTNhZS00OTYwLWJiNzQtMTAzM2U1NjIwZGUzO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -240,13 +240,13 @@ "4999" ], "x-ms-request-id": [ - "c6cbf1df-925a-468f-b24d-b836e10658f6" + "9ae650fb-c95f-44a9-8fd6-ded48e4cb5fa" ], "x-ms-correlation-request-id": [ - "c6cbf1df-925a-468f-b24d-b836e10658f6" + "9ae650fb-c95f-44a9-8fd6-ded48e4cb5fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061959Z:c6cbf1df-925a-468f-b24d-b836e10658f6" + "WESTCENTRALUS:20230217T011015Z:9ae650fb-c95f-44a9-8fd6-ded48e4cb5fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,7 +255,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:19:58 GMT" + "Fri, 17 Feb 2023 01:10:14 GMT" ], "Content-Length": [ "733" @@ -267,25 +267,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXwkA=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=aJ4sRIc17DAhoXNsTVj45fKq8eUGk4ZaaIQSf+LN6s0=\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDSc=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "27a569a8-49ba-41d3-b0b9-03f20aad7a88" + "a613eeed-8e41-42be-87de-ce5e2b6cbbc8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -295,6 +294,7 @@ "249" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -303,22 +303,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/operationResults/b3NfaWRfNjQ5NzZiZDktZmRlMC00MzAyLWIwMjAtOGZiZjU4MzcyYmZi?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/operationResults/aWQ9b3NfaWRfMjcxMmM1NzEtNWNjNy00NThjLThjNGQtMTRlY2YzZjMwODhmO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4998" + "4999" ], "x-ms-request-id": [ - "c625bc89-15a6-40ef-aa92-0a1c2dd41f68" + "58969bb9-9cb3-497b-b3d9-6df51926e84a" ], "x-ms-correlation-request-id": [ - "c625bc89-15a6-40ef-aa92-0a1c2dd41f68" + "58969bb9-9cb3-497b-b3d9-6df51926e84a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062035Z:c625bc89-15a6-40ef-aa92-0a1c2dd41f68" + "WESTUS:20230217T011057Z:58969bb9-9cb3-497b-b3d9-6df51926e84a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -327,7 +327,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:34 GMT" + "Fri, 17 Feb 2023 01:10:57 GMT" ], "Content-Length": [ "500" @@ -339,25 +339,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/operationResults/b3NfaWRfMmY3Y2I2Y2UtNTZiMy00YTQ0LTllYzgtYjcxMDU1ZmZjY2I1?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZNbVkzWTJJMlkyVXROVFppTXkwMFlUUTBMVGxsWXpndFlqY3hNRFUxWm1aalkySTE/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/operationResults/aWQ9b3NfaWRfNTM5OTljMTAtMzQzZS00YzBlLWI4NjctNjQ4ZWExYWYyOTViO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmTlRNNU9UbGpNVEF0TXpRelpTMDBZekJsTFdJNE5qY3ROalE0WldFeFlXWXlPVFZpTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ae699ca-7572-4b57-9e5a-3a79b6e9ab59" + "3d7e6817-6cbe-47b9-a021-f7cda1314691" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -369,16 +369,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11990" ], "x-ms-request-id": [ - "ceb2a8eb-9226-4417-8ce9-69f9f0a0d45d" + "0c2acd1f-e78a-471e-a529-271cdec9ee9f" ], "x-ms-correlation-request-id": [ - "ceb2a8eb-9226-4417-8ce9-69f9f0a0d45d" + "0c2acd1f-e78a-471e-a529-271cdec9ee9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061640Z:ceb2a8eb-9226-4417-8ce9-69f9f0a0d45d" + "WESTCENTRALUS:20230217T010702Z:0c2acd1f-e78a-471e-a529-271cdec9ee9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -387,7 +387,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:16:40 GMT" + "Fri, 17 Feb 2023 01:07:02 GMT" ], "Content-Length": [ "22" @@ -403,21 +403,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ae699ca-7572-4b57-9e5a-3a79b6e9ab59" + "3d7e6817-6cbe-47b9-a021-f7cda1314691" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -429,16 +429,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11989" ], "x-ms-request-id": [ - "8e0137b4-490e-41d1-9025-a94c7df32f21" + "f7d1f99f-a349-4f70-8c8a-d99adc07289a" ], "x-ms-correlation-request-id": [ - "8e0137b4-490e-41d1-9025-a94c7df32f21" + "f7d1f99f-a349-4f70-8c8a-d99adc07289a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061640Z:8e0137b4-490e-41d1-9025-a94c7df32f21" + "WESTCENTRALUS:20230217T010703Z:f7d1f99f-a349-4f70-8c8a-d99adc07289a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -447,7 +447,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:16:40 GMT" + "Fri, 17 Feb 2023 01:07:02 GMT" ], "Content-Length": [ "640" @@ -459,28 +459,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXwkA=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDSc=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ae699ca-7572-4b57-9e5a-3a79b6e9ab59" + "3d7e6817-6cbe-47b9-a021-f7cda1314691" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -492,16 +492,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11988" ], "x-ms-request-id": [ - "6c947445-66a8-4e9c-a899-7d75d45a50be" + "5eca1260-f7eb-4e48-b1e3-79fcce9b7c84" ], "x-ms-correlation-request-id": [ - "6c947445-66a8-4e9c-a899-7d75d45a50be" + "5eca1260-f7eb-4e48-b1e3-79fcce9b7c84" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061640Z:6c947445-66a8-4e9c-a899-7d75d45a50be" + "WESTCENTRALUS:20230217T010703Z:5eca1260-f7eb-4e48-b1e3-79fcce9b7c84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,7 +510,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:16:40 GMT" + "Fri, 17 Feb 2023 01:07:02 GMT" ], "Content-Length": [ "640" @@ -522,28 +522,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXwkA=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDSc=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "571ed154-59a2-450e-a4f9-4956ac38b409" + "07bc9c35-031f-4aaf-88d4-c8597daf708a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -555,16 +555,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "9eb5721c-4cc4-412c-82b2-88a5d73b1dae" + "7176fd47-7185-4bf3-b011-d1dcafedb8e2" ], "x-ms-correlation-request-id": [ - "9eb5721c-4cc4-412c-82b2-88a5d73b1dae" + "7176fd47-7185-4bf3-b011-d1dcafedb8e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061957Z:9eb5721c-4cc4-412c-82b2-88a5d73b1dae" + "WESTCENTRALUS:20230217T011013Z:7176fd47-7185-4bf3-b011-d1dcafedb8e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -573,7 +573,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:19:57 GMT" + "Fri, 17 Feb 2023 01:10:13 GMT" ], "Content-Length": [ "640" @@ -585,25 +585,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXwkA=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDSc=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "571ed154-59a2-450e-a4f9-4956ac38b409" + "07bc9c35-031f-4aaf-88d4-c8597daf708a" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -615,16 +615,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "0f87d561-6b32-4711-833f-cf0c2af436bd" + "b8937644-c71e-4184-af65-93adbc895cc0" ], "x-ms-correlation-request-id": [ - "0f87d561-6b32-4711-833f-cf0c2af436bd" + "b8937644-c71e-4184-af65-93adbc895cc0" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062029Z:0f87d561-6b32-4711-833f-cf0c2af436bd" + "WESTCENTRALUS:20230217T011045Z:b8937644-c71e-4184-af65-93adbc895cc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,7 +633,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:28 GMT" + "Fri, 17 Feb 2023 01:10:44 GMT" ], "Content-Length": [ "833" @@ -645,28 +645,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "571ed154-59a2-450e-a4f9-4956ac38b409" + "07bc9c35-031f-4aaf-88d4-c8597daf708a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -678,16 +678,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "3c397d6f-aee3-4188-a61c-abc2552252c8" + "1a7ea003-1e04-4fd8-b74e-094322af7e6a" ], "x-ms-correlation-request-id": [ - "3c397d6f-aee3-4188-a61c-abc2552252c8" + "1a7ea003-1e04-4fd8-b74e-094322af7e6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062029Z:3c397d6f-aee3-4188-a61c-abc2552252c8" + "WESTCENTRALUS:20230217T011045Z:1a7ea003-1e04-4fd8-b74e-094322af7e6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -696,7 +696,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:28 GMT" + "Fri, 17 Feb 2023 01:10:44 GMT" ], "Content-Length": [ "833" @@ -708,28 +708,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "439ed69c-b7a3-4f9d-8960-225bf8828d74" + "5a5a9ada-eb29-40d3-9bc2-394748858f93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -741,16 +741,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "0f62f152-2329-4a0f-a766-4d43cc585d00" + "e85a3786-f87f-4e49-acd4-261d39fa30fd" ], "x-ms-correlation-request-id": [ - "0f62f152-2329-4a0f-a766-4d43cc585d00" + "e85a3786-f87f-4e49-acd4-261d39fa30fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062029Z:0f62f152-2329-4a0f-a766-4d43cc585d00" + "WESTCENTRALUS:20230217T011046Z:e85a3786-f87f-4e49-acd4-261d39fa30fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -759,7 +759,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:29 GMT" + "Fri, 17 Feb 2023 01:10:46 GMT" ], "Content-Length": [ "833" @@ -771,28 +771,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7deb433d-80fc-4a1e-a089-1d76932e8386" + "01d0d90b-dd27-4b06-81a8-55d0f2e67621" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -807,13 +807,13 @@ "11994" ], "x-ms-request-id": [ - "9d3bb36d-7793-4e32-8919-3b728f3d9640" + "263686d1-b2a2-4056-b888-8aceb5483239" ], "x-ms-correlation-request-id": [ - "9d3bb36d-7793-4e32-8919-3b728f3d9640" + "263686d1-b2a2-4056-b888-8aceb5483239" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062030Z:9d3bb36d-7793-4e32-8919-3b728f3d9640" + "WESTCENTRALUS:20230217T011047Z:263686d1-b2a2-4056-b888-8aceb5483239" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -822,7 +822,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:29 GMT" + "Fri, 17 Feb 2023 01:10:47 GMT" ], "Content-Length": [ "833" @@ -834,28 +834,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e78e628-e92a-4378-9591-215eefbd43f1" + "59088158-2bc4-45e0-81af-87528094f1e9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -870,13 +870,13 @@ "11993" ], "x-ms-request-id": [ - "3f875839-bc88-4ad7-8e1e-b613d624372e" + "937b3194-7699-4aa4-b525-61a23c5ac1cc" ], "x-ms-correlation-request-id": [ - "3f875839-bc88-4ad7-8e1e-b613d624372e" + "937b3194-7699-4aa4-b525-61a23c5ac1cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062030Z:3f875839-bc88-4ad7-8e1e-b613d624372e" + "WESTCENTRALUS:20230217T011048Z:937b3194-7699-4aa4-b525-61a23c5ac1cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -885,7 +885,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:29 GMT" + "Fri, 17 Feb 2023 01:10:47 GMT" ], "Content-Length": [ "833" @@ -897,28 +897,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bdb2dc8-a38f-4dd4-8af0-337c1b3d08e3" + "10c495e5-bded-46d9-947d-7599a35655e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -930,16 +930,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11987" ], "x-ms-request-id": [ - "a31a1901-2511-43b2-ac97-7a59d445892f" + "a43b09b3-566c-4a8a-a4e4-605f762b0223" ], "x-ms-correlation-request-id": [ - "a31a1901-2511-43b2-ac97-7a59d445892f" + "a43b09b3-566c-4a8a-a4e4-605f762b0223" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062031Z:a31a1901-2511-43b2-ac97-7a59d445892f" + "WESTCENTRALUS:20230217T011049Z:a43b09b3-566c-4a8a-a4e4-605f762b0223" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -948,7 +948,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:30 GMT" + "Fri, 17 Feb 2023 01:10:48 GMT" ], "Content-Length": [ "833" @@ -960,28 +960,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55b70bea-56ec-4d3b-87ed-92a94c02697c" + "57296884-e139-405c-b09f-fcb0542e17df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -993,16 +993,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-request-id": [ - "134ca731-b5ed-4480-bfc3-384a60b4f182" + "865056bc-650f-4e04-8448-6b96771ae56e" ], "x-ms-correlation-request-id": [ - "134ca731-b5ed-4480-bfc3-384a60b4f182" + "865056bc-650f-4e04-8448-6b96771ae56e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062031Z:134ca731-b5ed-4480-bfc3-384a60b4f182" + "WESTCENTRALUS:20230217T011050Z:865056bc-650f-4e04-8448-6b96771ae56e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,7 +1011,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:30 GMT" + "Fri, 17 Feb 2023 01:10:49 GMT" ], "Content-Length": [ "833" @@ -1023,28 +1023,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d29340d-1478-4020-ae2a-ca8f9d1b7db8" + "d4941305-1eb6-454d-931d-c5807d56ac6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1056,16 +1056,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-request-id": [ - "b69a223f-2555-47fa-88f8-5b85c681e679" + "85a7d2ee-67d5-453d-b8b1-1b2377b3abe8" ], "x-ms-correlation-request-id": [ - "b69a223f-2555-47fa-88f8-5b85c681e679" + "85a7d2ee-67d5-453d-b8b1-1b2377b3abe8" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062031Z:b69a223f-2555-47fa-88f8-5b85c681e679" + "WESTCENTRALUS:20230217T011051Z:85a7d2ee-67d5-453d-b8b1-1b2377b3abe8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1074,7 +1074,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:31 GMT" + "Fri, 17 Feb 2023 01:10:50 GMT" ], "Content-Length": [ "833" @@ -1086,28 +1086,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b272cec5-84b0-4a9e-9944-dd554d412594" + "b917879e-7711-46ed-b9c4-758c5e576f27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1119,16 +1119,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], "x-ms-request-id": [ - "4106b36e-d13f-44d4-a8a3-de77c5d062f3" + "c294fb64-b54d-4927-b649-986ce73c3991" ], "x-ms-correlation-request-id": [ - "4106b36e-d13f-44d4-a8a3-de77c5d062f3" + "c294fb64-b54d-4927-b649-986ce73c3991" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062032Z:4106b36e-d13f-44d4-a8a3-de77c5d062f3" + "WESTCENTRALUS:20230217T011052Z:c294fb64-b54d-4927-b649-986ce73c3991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1137,7 +1137,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:31 GMT" + "Fri, 17 Feb 2023 01:10:52 GMT" ], "Content-Length": [ "833" @@ -1149,28 +1149,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0ea9d40-5ec5-4b06-8fed-d7229bd49a5f" + "1eae4567-2ed2-47d8-9ce3-97964e7f8802" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1182,16 +1182,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11997" ], "x-ms-request-id": [ - "d8f4c721-534a-43c1-9f15-2792a2c1a530" + "27909405-d9f8-42a0-b6a6-311cf5065b27" ], "x-ms-correlation-request-id": [ - "d8f4c721-534a-43c1-9f15-2792a2c1a530" + "27909405-d9f8-42a0-b6a6-311cf5065b27" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062032Z:d8f4c721-534a-43c1-9f15-2792a2c1a530" + "WESTCENTRALUS:20230217T011053Z:27909405-d9f8-42a0-b6a6-311cf5065b27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1200,7 +1200,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:31 GMT" + "Fri, 17 Feb 2023 01:10:52 GMT" ], "Content-Length": [ "833" @@ -1212,28 +1212,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59e381a5-16b2-49b3-8366-eb85b1c09473" + "680f6052-9ddc-4e63-957f-93ecab442a69" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1245,16 +1245,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-request-id": [ - "89ac4433-058c-43a0-ab0d-8678fd065908" + "444b82f3-7a24-4ecd-9736-c62a2776aaa1" ], "x-ms-correlation-request-id": [ - "89ac4433-058c-43a0-ab0d-8678fd065908" + "444b82f3-7a24-4ecd-9736-c62a2776aaa1" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062032Z:89ac4433-058c-43a0-ab0d-8678fd065908" + "WESTCENTRALUS:20230217T011054Z:444b82f3-7a24-4ecd-9736-c62a2776aaa1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1263,7 +1263,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:32 GMT" + "Fri, 17 Feb 2023 01:10:53 GMT" ], "Content-Length": [ "833" @@ -1275,28 +1275,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07f83df9-9d9f-4343-b6a6-10e7971c7cef" + "fbeab7cf-2fc3-468b-b32e-657f555934fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1308,16 +1308,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11987" ], "x-ms-request-id": [ - "fe0f0ae1-fe9a-41cc-a740-61957849834b" + "bede0ad9-0f35-450b-a7ce-9fa1a354db77" ], "x-ms-correlation-request-id": [ - "fe0f0ae1-fe9a-41cc-a740-61957849834b" + "bede0ad9-0f35-450b-a7ce-9fa1a354db77" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062033Z:fe0f0ae1-fe9a-41cc-a740-61957849834b" + "WESTCENTRALUS:20230217T011055Z:bede0ad9-0f35-450b-a7ce-9fa1a354db77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1326,7 +1326,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:32 GMT" + "Fri, 17 Feb 2023 01:10:54 GMT" ], "Content-Length": [ "833" @@ -1338,28 +1338,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b500bcbe-fde7-46bf-b80f-b0ecc749a3b2" + "efdb7612-64b1-421c-93c6-b2ec93138b68" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1371,16 +1371,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-request-id": [ - "20e0e781-f3ff-4e81-912b-4f79923bb44e" + "9b629dfd-d39b-4f95-adab-5f8ab431479d" ], "x-ms-correlation-request-id": [ - "20e0e781-f3ff-4e81-912b-4f79923bb44e" + "9b629dfd-d39b-4f95-adab-5f8ab431479d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062033Z:20e0e781-f3ff-4e81-912b-4f79923bb44e" + "WESTUS:20230217T011056Z:9b629dfd-d39b-4f95-adab-5f8ab431479d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,7 +1389,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:33 GMT" + "Fri, 17 Feb 2023 01:10:55 GMT" ], "Content-Length": [ "833" @@ -1401,28 +1401,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27a569a8-49ba-41d3-b0b9-03f20aad7a88" + "a613eeed-8e41-42be-87de-ce5e2b6cbbc8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1434,16 +1434,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11999" ], "x-ms-request-id": [ - "38846dae-efed-43ae-924f-df8a682645a4" + "3aa476f8-fe62-4442-8c5c-aea34369a9ff" ], "x-ms-correlation-request-id": [ - "38846dae-efed-43ae-924f-df8a682645a4" + "3aa476f8-fe62-4442-8c5c-aea34369a9ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062034Z:38846dae-efed-43ae-924f-df8a682645a4" + "WESTUS:20230217T011056Z:3aa476f8-fe62-4442-8c5c-aea34369a9ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1452,7 +1452,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:33 GMT" + "Fri, 17 Feb 2023 01:10:56 GMT" ], "Content-Length": [ "833" @@ -1464,28 +1464,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27a569a8-49ba-41d3-b0b9-03f20aad7a88" + "a613eeed-8e41-42be-87de-ce5e2b6cbbc8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1497,16 +1497,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11998" ], "x-ms-request-id": [ - "27803379-ed8b-4264-80bc-c86772d58877" + "4f2d3526-9912-4a3f-9977-0575c94ac3d2" ], "x-ms-correlation-request-id": [ - "27803379-ed8b-4264-80bc-c86772d58877" + "4f2d3526-9912-4a3f-9977-0575c94ac3d2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062034Z:27803379-ed8b-4264-80bc-c86772d58877" + "WESTUS:20230217T011057Z:4f2d3526-9912-4a3f-9977-0575c94ac3d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1515,7 +1515,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:33 GMT" + "Fri, 17 Feb 2023 01:10:56 GMT" ], "Content-Length": [ "833" @@ -1527,25 +1527,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxog=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps1969.azure-devices.net\",\r\n \"connectionString\": \"HostName=ps1969.azure-devices.net;SharedAccessKeyName=ServiceKey;SharedAccessKey=****\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDxk=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": false,\r\n \"name\": \"ps3604.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"West US\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27a569a8-49ba-41d3-b0b9-03f20aad7a88" + "a613eeed-8e41-42be-87de-ce5e2b6cbbc8" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1557,16 +1557,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11996" ], "x-ms-request-id": [ - "14256562-2efe-4527-aea6-4298950241d8" + "aaa1886d-50b9-4d9b-85e9-78d2d167c200" ], "x-ms-correlation-request-id": [ - "14256562-2efe-4527-aea6-4298950241d8" + "aaa1886d-50b9-4d9b-85e9-78d2d167c200" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062106Z:14256562-2efe-4527-aea6-4298950241d8" + "WESTUS:20230217T011128Z:aaa1886d-50b9-4d9b-85e9-78d2d167c200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1575,7 +1575,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:21:05 GMT" + "Fri, 17 Feb 2023 01:11:27 GMT" ], "Content-Length": [ "640" @@ -1587,26 +1587,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcXxx4=\",\r\n \"name\": \"ps8484\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps8484.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002361DF\"\r\n },\r\n \"resourcegroup\": \"ps9949\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfD7c=\",\r\n \"name\": \"ps5073\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5073.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4ED\"\r\n },\r\n \"resourcegroup\": \"ps7728\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE5Njk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM2MDQ/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "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": [ - "4fd507c4-c0ca-4b35-aaff-2a1398b13efc" + "15314d9f-e76d-4774-9648-9ff3e6124298" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1615,6 +1614,7 @@ "85" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1623,7 +1623,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfYjEzNmJmYmQtYzljMi00ZmQ4LWIyMGMtOWQ0OWNjODAxYWNj?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNjVhY2I5MDUtNTY3NC00NDUwLTlhNjAtNjY5N2YxMGU4Y2QxO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -1632,13 +1632,13 @@ "4999" ], "x-ms-request-id": [ - "248e2bd2-1a44-491f-8a04-0d741d8c693d" + "67e34d78-70c2-4628-8236-2b47db051bf2" ], "x-ms-correlation-request-id": [ - "248e2bd2-1a44-491f-8a04-0d741d8c693d" + "67e34d78-70c2-4628-8236-2b47db051bf2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061649Z:248e2bd2-1a44-491f-8a04-0d741d8c693d" + "WESTUS:20230217T010706Z:67e34d78-70c2-4628-8236-2b47db051bf2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1647,10 +1647,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:16:49 GMT" + "Fri, 17 Feb 2023 01:07:06 GMT" ], "Content-Length": [ - "619" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1659,34 +1659,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969\",\r\n \"name\": \"ps1969\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps9949\",\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604\",\r\n \"name\": \"ps3604\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps7728\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE5Njk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM2MDQ/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAACrvBeOM=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d49AUZJFFsPlzfa6qxFd4ghM+BuHFAFFZ6gu9wklEw=\",\r\n \"secondaryKey\": \"dYA1Uyo9PZ03agOFtM2O4sGdD3jZTnMaDd1eXxmOAps=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RyzbhWF1P23du2GByIQXA1CrH4YOKTezU2CjC3MqPCk=\",\r\n \"secondaryKey\": \"bE1Jbt2PVufSOKfMarHvvRfUE+6aSvijjBGLi6G4lpI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"qfq5N9SgQK5Z/2+VyoBpftRcdXw8sHlm027oCxYFs64=\",\r\n \"secondaryKey\": \"6aXQBPN9cp2uQt+foZyXxEEysDrsMoZUh06O6/T/u24=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"TDQXAXWf9MEFcflK7T68U4GoZLnGDl0dfh6PqhVhG60=\",\r\n \"secondaryKey\": \"yPc6ZnQl5JfMKFMZUJQaybrM6Jvd/6MqTCdso6i8x4o=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"PH8Ww3mmiWULZDeuzPOAiofWIvWLgNeSnbIddiGlChM=\",\r\n \"secondaryKey\": \"7zFWM/+edl9m+l93qyDW6lNhwaaN64i6K8lstQ+LB6s=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"ServiceConnect\"\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 \"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\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3730c271-2270-4ba9-b368-ab5772b0dae0" + "d0d5c560-d485-41bf-8b8d-18a8cbcccba5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2704" + "2790" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAADHxYEV4=\",\r\n \"properties\": {\r\n \"authorizationPolicies\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\r\n }\r\n ],\r\n \"allowedFqdnList\": [],\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 },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"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 \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1695,22 +1695,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfNDhiYzJmOTAtZjI0NS00Njc5LWIyOTEtMmEzODExMGViMjZl?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYjg0N2RjYmEtNDE4YS00MzIyLWE2NjYtZDM1NGE2OTcxZGM0O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4998" + "4999" ], "x-ms-request-id": [ - "b644d941-7273-4f43-9b47-51211f07e967" + "91d04a80-1bce-4c17-9ed5-119ff408d2e0" ], "x-ms-correlation-request-id": [ - "b644d941-7273-4f43-9b47-51211f07e967" + "91d04a80-1bce-4c17-9ed5-119ff408d2e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061926Z:b644d941-7273-4f43-9b47-51211f07e967" + "WESTUS:20230217T010941Z:91d04a80-1bce-4c17-9ed5-119ff408d2e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1719,10 +1719,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:19:25 GMT" + "Fri, 17 Feb 2023 01:09:41 GMT" ], "Content-Length": [ - "4128" + "4080" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1731,25 +1731,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969\",\r\n \"name\": \"ps1969\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps9949\",\r\n \"etag\": \"AAAACrvBeOM=\",\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\": \"3d49AUZJFFsPlzfa6qxFd4ghM+BuHFAFFZ6gu9wklEw=\",\r\n \"secondaryKey\": \"dYA1Uyo9PZ03agOFtM2O4sGdD3jZTnMaDd1eXxmOAps=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RyzbhWF1P23du2GByIQXA1CrH4YOKTezU2CjC3MqPCk=\",\r\n \"secondaryKey\": \"bE1Jbt2PVufSOKfMarHvvRfUE+6aSvijjBGLi6G4lpI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"qfq5N9SgQK5Z/2+VyoBpftRcdXw8sHlm027oCxYFs64=\",\r\n \"secondaryKey\": \"6aXQBPN9cp2uQt+foZyXxEEysDrsMoZUh06O6/T/u24=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"TDQXAXWf9MEFcflK7T68U4GoZLnGDl0dfh6PqhVhG60=\",\r\n \"secondaryKey\": \"yPc6ZnQl5JfMKFMZUJQaybrM6Jvd/6MqTCdso6i8x4o=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"PH8Ww3mmiWULZDeuzPOAiofWIvWLgNeSnbIddiGlChM=\",\r\n \"secondaryKey\": \"7zFWM/+edl9m+l93qyDW6lNhwaaN64i6K8lstQ+LB6s=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"aJ4sRIc17DAhoXNsTVj45fKq8eUGk4ZaaIQSf+LN6s0=\",\r\n \"secondaryKey\": \"uLqO/PSVqo5fR/x0aBGFXIrGd6d3+JkGCGmrNm0Rj3w=\",\r\n \"rights\": \"ServiceConnect\"\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\": \"ps1969-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps1969-8388912-4a16e130a4.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"scaleunitsend-1b1c10e9-39c2-42d1-9398-e6d2b68b8e60-iothub\",\r\n \"PrimaryKey\": \"OtQ1ahR+fU2jSu9SILuXqyYGbwhUSEpYpu8UfbgS6n8=\",\r\n \"SecondaryKey\": \"ji3uPeHqoatlVIg+lXH4lmmuSpGeNQfNsqU/SAywC6k=\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:18:22 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:18:22 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"owner-d0da2e10-b80a-419a-a786-6cb1f0cca1f8-iothub\",\r\n \"PrimaryKey\": \"fBUOAQYg5NcWAfKMHeR1N3DsqwZ2dwhSG9Z2vSNw9/8=\",\r\n \"SecondaryKey\": \"agkdXL0g5Y/cOGFiaq7gQ6f2VYElO0kNIXvRTFDHw1A=\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:18:22 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:18:22 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"3d49AUZJFFsPlzfa6qxFd4ghM+BuHFAFFZ6gu9wklEw=\",\r\n \"SecondaryKey\": \"dYA1Uyo9PZ03agOFtM2O4sGdD3jZTnMaDd1eXxmOAps=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:18:22 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:18:22 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"RyzbhWF1P23du2GByIQXA1CrH4YOKTezU2CjC3MqPCk=\",\r\n \"SecondaryKey\": \"bE1Jbt2PVufSOKfMarHvvRfUE+6aSvijjBGLi6G4lpI=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Wed, 24 Feb 2021 06:18:22 GMT\",\r\n \"ModifiedTime\": \"Wed, 24 Feb 2021 06:18: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 \"storageContainers\": [],\r\n \"cosmosDBSqlCollections\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604\",\r\n \"name\": \"ps3604\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps7728\",\r\n \"etag\": \"AAAADHxYEV4=\",\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\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\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\": \"ps3604-operationmonitoring\",\r\n \"endpoint\": \"sb://iothub-ns-ps3604-24621368-0bbcc4f8b2.servicebus.windows.net/\",\r\n \"internalAuthorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"scaleunitsend-47a2f20c-c357-4d66-a372-447fbe1e6a98-iothub\",\r\n \"PrimaryKey\": \"DYorwrQWf0uiBEsIQOHVHcIqPgZmBsOrWkKX70xFPlI=\",\r\n \"SecondaryKey\": \"xw9QSl0U+0vjyO7l7+i/a/lWHp0vfTkztAtK4xnSZ2k=\",\r\n \"Rights\": [\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 01:08:58 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 01:08:58 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"owner-4f2cd4d9-71bb-4cf7-832d-59b9f9b0a919-iothub\",\r\n \"PrimaryKey\": \"HCZt5OLvPlNkezwWO0uSlpc3fiosvzo267WtwNbebbQ=\",\r\n \"SecondaryKey\": \"JGdHwFpBx5JNwHSHjPpOZo93qMsql/EsmU09bYtXjSg=\",\r\n \"Rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 01:08:58 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 01:08:58 GMT\"\r\n }\r\n ],\r\n \"authorizationPolicies\": [\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"iothubowner\",\r\n \"PrimaryKey\": \"31iSP4IDwp1M2MmHg9AcXsTIQFAfnHJRqBTI4SHyrRg=\",\r\n \"SecondaryKey\": \"X7iCGnu5mQIo+JQe4F7d3AwOYYXEBJko+ie7vu80mT8=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 01:08:58 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 01:08:58 GMT\"\r\n },\r\n {\r\n \"ClaimType\": \"SharedAccessKey\",\r\n \"ClaimValue\": \"None\",\r\n \"KeyName\": \"service\",\r\n \"PrimaryKey\": \"1o67iDOtdqDZKmA+XxRSqWF+EWgrdEHYUZlN7rRLz94=\",\r\n \"SecondaryKey\": \"RjDDTeq3ZJ+C0dzOWFDAGxqurfQ61qQWEOssGlAr+Vs=\",\r\n \"Rights\": [\r\n \"Listen\"\r\n ],\r\n \"CreatedTime\": \"Fri, 17 Feb 2023 01:08:58 GMT\",\r\n \"ModifiedTime\": \"Fri, 17 Feb 2023 01:08: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 \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfYjEzNmJmYmQtYzljMi00ZmQ4LWIyMGMtOWQ0OWNjODAxYWNj?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpFek5tSm1ZbVF0WXpsak1pMDBabVE0TFdJeU1HTXRPV1EwT1dOak9EQXhZV05qP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNjVhY2I5MDUtNTY3NC00NDUwLTlhNjAtNjY5N2YxMGU4Y2QxO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTmpWaFkySTVNRFV0TlRZM05DMDBORFV3TFRsaE5qQXROalk1TjJZeE1HVTRZMlF4TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fd507c4-c0ca-4b35-aaff-2a1398b13efc" + "15314d9f-e76d-4774-9648-9ff3e6124298" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1764,13 +1764,13 @@ "11999" ], "x-ms-request-id": [ - "a495526a-d625-4522-91f0-b37338ae8bb9" + "98dfa940-2b0c-4a1d-9037-9e8f27ca3aa4" ], "x-ms-correlation-request-id": [ - "a495526a-d625-4522-91f0-b37338ae8bb9" + "98dfa940-2b0c-4a1d-9037-9e8f27ca3aa4" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061720Z:a495526a-d625-4522-91f0-b37338ae8bb9" + "WESTUS:20230217T010736Z:98dfa940-2b0c-4a1d-9037-9e8f27ca3aa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1779,7 +1779,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:17:19 GMT" + "Fri, 17 Feb 2023 01:07:36 GMT" ], "Content-Length": [ "20" @@ -1795,21 +1795,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfYjEzNmJmYmQtYzljMi00ZmQ4LWIyMGMtOWQ0OWNjODAxYWNj?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpFek5tSm1ZbVF0WXpsak1pMDBabVE0TFdJeU1HTXRPV1EwT1dOak9EQXhZV05qP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNjVhY2I5MDUtNTY3NC00NDUwLTlhNjAtNjY5N2YxMGU4Y2QxO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTmpWaFkySTVNRFV0TlRZM05DMDBORFV3TFRsaE5qQXROalk1TjJZeE1HVTRZMlF4TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fd507c4-c0ca-4b35-aaff-2a1398b13efc" + "15314d9f-e76d-4774-9648-9ff3e6124298" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1824,13 +1824,13 @@ "11998" ], "x-ms-request-id": [ - "e4fe1bc1-d4d0-405b-a7c7-35c53795b3c1" + "3cd67e69-58b9-4371-927a-0e6d6a3ca04f" ], "x-ms-correlation-request-id": [ - "e4fe1bc1-d4d0-405b-a7c7-35c53795b3c1" + "3cd67e69-58b9-4371-927a-0e6d6a3ca04f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061750Z:e4fe1bc1-d4d0-405b-a7c7-35c53795b3c1" + "WESTUS:20230217T010806Z:3cd67e69-58b9-4371-927a-0e6d6a3ca04f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1839,7 +1839,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:17:50 GMT" + "Fri, 17 Feb 2023 01:08:06 GMT" ], "Content-Length": [ "20" @@ -1855,21 +1855,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfYjEzNmJmYmQtYzljMi00ZmQ4LWIyMGMtOWQ0OWNjODAxYWNj?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpFek5tSm1ZbVF0WXpsak1pMDBabVE0TFdJeU1HTXRPV1EwT1dOak9EQXhZV05qP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNjVhY2I5MDUtNTY3NC00NDUwLTlhNjAtNjY5N2YxMGU4Y2QxO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTmpWaFkySTVNRFV0TlRZM05DMDBORFV3TFRsaE5qQXROalk1TjJZeE1HVTRZMlF4TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fd507c4-c0ca-4b35-aaff-2a1398b13efc" + "15314d9f-e76d-4774-9648-9ff3e6124298" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1884,13 +1884,13 @@ "11997" ], "x-ms-request-id": [ - "27d80f6b-662a-431b-99bd-dd345b55f0f1" + "13886ac0-6021-4ebe-83e6-ea037ceacada" ], "x-ms-correlation-request-id": [ - "27d80f6b-662a-431b-99bd-dd345b55f0f1" + "13886ac0-6021-4ebe-83e6-ea037ceacada" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061820Z:27d80f6b-662a-431b-99bd-dd345b55f0f1" + "WESTUS:20230217T010836Z:13886ac0-6021-4ebe-83e6-ea037ceacada" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1899,7 +1899,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:18:20 GMT" + "Fri, 17 Feb 2023 01:08:35 GMT" ], "Content-Length": [ "20" @@ -1915,21 +1915,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfYjEzNmJmYmQtYzljMi00ZmQ4LWIyMGMtOWQ0OWNjODAxYWNj?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpFek5tSm1ZbVF0WXpsak1pMDBabVE0TFdJeU1HTXRPV1EwT1dOak9EQXhZV05qP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNjVhY2I5MDUtNTY3NC00NDUwLTlhNjAtNjY5N2YxMGU4Y2QxO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTmpWaFkySTVNRFV0TlRZM05DMDBORFV3TFRsaE5qQXROalk1TjJZeE1HVTRZMlF4TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fd507c4-c0ca-4b35-aaff-2a1398b13efc" + "15314d9f-e76d-4774-9648-9ff3e6124298" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1944,13 +1944,13 @@ "11996" ], "x-ms-request-id": [ - "1123042e-2958-42eb-964c-10b9a287fbf3" + "46fffec1-8593-4fb8-a5ef-98318ea320a0" ], "x-ms-correlation-request-id": [ - "1123042e-2958-42eb-964c-10b9a287fbf3" + "46fffec1-8593-4fb8-a5ef-98318ea320a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061850Z:1123042e-2958-42eb-964c-10b9a287fbf3" + "WESTUS:20230217T010906Z:46fffec1-8593-4fb8-a5ef-98318ea320a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1959,7 +1959,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:18:49 GMT" + "Fri, 17 Feb 2023 01:09:06 GMT" ], "Content-Length": [ "20" @@ -1975,21 +1975,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfYjEzNmJmYmQtYzljMi00ZmQ4LWIyMGMtOWQ0OWNjODAxYWNj?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmWWpFek5tSm1ZbVF0WXpsak1pMDBabVE0TFdJeU1HTXRPV1EwT1dOak9EQXhZV05qP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNjVhY2I5MDUtNTY3NC00NDUwLTlhNjAtNjY5N2YxMGU4Y2QxO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTmpWaFkySTVNRFV0TlRZM05DMDBORFV3TFRsaE5qQXROalk1TjJZeE1HVTRZMlF4TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fd507c4-c0ca-4b35-aaff-2a1398b13efc" + "15314d9f-e76d-4774-9648-9ff3e6124298" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2004,13 +2004,13 @@ "11995" ], "x-ms-request-id": [ - "5a6f3c85-eefe-4f11-aa7a-b8b8eefb015b" + "c6f33d87-cf3f-4eb4-a9c9-96046e067eea" ], "x-ms-correlation-request-id": [ - "5a6f3c85-eefe-4f11-aa7a-b8b8eefb015b" + "c6f33d87-cf3f-4eb4-a9c9-96046e067eea" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061920Z:5a6f3c85-eefe-4f11-aa7a-b8b8eefb015b" + "WESTUS:20230217T010936Z:c6f33d87-cf3f-4eb4-a9c9-96046e067eea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2019,7 +2019,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:19:20 GMT" + "Fri, 17 Feb 2023 01:09:36 GMT" ], "Content-Length": [ "22" @@ -2035,21 +2035,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE5Njk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM2MDQ/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fd507c4-c0ca-4b35-aaff-2a1398b13efc" + "15314d9f-e76d-4774-9648-9ff3e6124298" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2064,13 +2064,13 @@ "11994" ], "x-ms-request-id": [ - "7cad99e8-f4f6-4b5b-b397-5df0834690d4" + "967f75a9-aa85-4f51-9d75-488336713ed7" ], "x-ms-correlation-request-id": [ - "7cad99e8-f4f6-4b5b-b397-5df0834690d4" + "967f75a9-aa85-4f51-9d75-488336713ed7" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061921Z:7cad99e8-f4f6-4b5b-b397-5df0834690d4" + "WESTUS:20230217T010937Z:967f75a9-aa85-4f51-9d75-488336713ed7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2079,10 +2079,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:19:21 GMT" + "Fri, 17 Feb 2023 01:09:37 GMT" ], "Content-Length": [ - "1487" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2091,28 +2091,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969\",\r\n \"name\": \"ps1969\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps9949\",\r\n \"etag\": \"AAAACrvBeOM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1969.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1969\",\r\n \"endpoint\": \"sb://iothub-ns-ps1969-8388912-4a16e130a4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604\",\r\n \"name\": \"ps3604\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps7728\",\r\n \"etag\": \"AAAADHxYEV4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3604.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3604\",\r\n \"endpoint\": \"sb://iothub-ns-ps3604-24621368-0bbcc4f8b2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T01:07:05.8733333Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE5Njk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM2MDQ/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fd507c4-c0ca-4b35-aaff-2a1398b13efc" + "15314d9f-e76d-4774-9648-9ff3e6124298" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2127,13 +2127,13 @@ "11993" ], "x-ms-request-id": [ - "fb134fe8-57a2-472a-b5b5-b728b755591d" + "98baeae5-20d0-4120-9edc-9306446433c3" ], "x-ms-correlation-request-id": [ - "fb134fe8-57a2-472a-b5b5-b728b755591d" + "98baeae5-20d0-4120-9edc-9306446433c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061922Z:fb134fe8-57a2-472a-b5b5-b728b755591d" + "WESTUS:20230217T010938Z:98baeae5-20d0-4120-9edc-9306446433c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2142,10 +2142,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:19:21 GMT" + "Fri, 17 Feb 2023 01:09:37 GMT" ], "Content-Length": [ - "1487" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2154,28 +2154,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969\",\r\n \"name\": \"ps1969\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps9949\",\r\n \"etag\": \"AAAACrvBeOM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1969.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1969\",\r\n \"endpoint\": \"sb://iothub-ns-ps1969-8388912-4a16e130a4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604\",\r\n \"name\": \"ps3604\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps7728\",\r\n \"etag\": \"AAAADHxYEV4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3604.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3604\",\r\n \"endpoint\": \"sb://iothub-ns-ps3604-24621368-0bbcc4f8b2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T01:07:05.8733333Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE5Njk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM2MDQ/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3730c271-2270-4ba9-b368-ab5772b0dae0" + "d0d5c560-d485-41bf-8b8d-18a8cbcccba5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2187,16 +2187,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-request-id": [ - "af846464-a239-49a5-98fc-44a6307494cd" + "6a14e7c7-f7d3-4574-bd4f-dc6ecd2fef3b" ], "x-ms-correlation-request-id": [ - "af846464-a239-49a5-98fc-44a6307494cd" + "6a14e7c7-f7d3-4574-bd4f-dc6ecd2fef3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061922Z:af846464-a239-49a5-98fc-44a6307494cd" + "WESTUS:20230217T010939Z:6a14e7c7-f7d3-4574-bd4f-dc6ecd2fef3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2205,10 +2205,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:19:22 GMT" + "Fri, 17 Feb 2023 01:09:39 GMT" ], "Content-Length": [ - "1487" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2217,25 +2217,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969\",\r\n \"name\": \"ps1969\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps9949\",\r\n \"etag\": \"AAAACrvBeOM=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1969.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1969\",\r\n \"endpoint\": \"sb://iothub-ns-ps1969-8388912-4a16e130a4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604\",\r\n \"name\": \"ps3604\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps7728\",\r\n \"etag\": \"AAAADHxYEV4=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3604.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3604\",\r\n \"endpoint\": \"sb://iothub-ns-ps3604-24621368-0bbcc4f8b2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T01:07:05.8733333Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE5Njk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM2MDQ/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3730c271-2270-4ba9-b368-ab5772b0dae0" + "d0d5c560-d485-41bf-8b8d-18a8cbcccba5" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2247,16 +2247,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-request-id": [ - "2d890d43-421d-4e16-a87a-9ba82aa8f26b" + "49ae10ba-86d9-4ff2-93f0-1aa10581d7ff" ], "x-ms-correlation-request-id": [ - "2d890d43-421d-4e16-a87a-9ba82aa8f26b" + "49ae10ba-86d9-4ff2-93f0-1aa10581d7ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061956Z:2d890d43-421d-4e16-a87a-9ba82aa8f26b" + "WESTUS:20230217T011012Z:49ae10ba-86d9-4ff2-93f0-1aa10581d7ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2265,10 +2265,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:19:55 GMT" + "Fri, 17 Feb 2023 01:10:12 GMT" ], "Content-Length": [ - "1487" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2277,28 +2277,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969\",\r\n \"name\": \"ps1969\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps9949\",\r\n \"etag\": \"AAAACrvDl5o=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1969.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1969\",\r\n \"endpoint\": \"sb://iothub-ns-ps1969-8388912-4a16e130a4.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604\",\r\n \"name\": \"ps3604\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps7728\",\r\n \"etag\": \"AAAADHxYEfI=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3604.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3604\",\r\n \"endpoint\": \"sb://iothub-ns-ps3604-24621368-0bbcc4f8b2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-17T01:07:05.8733333Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE5NjkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM2MDQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3730c271-2270-4ba9-b368-ab5772b0dae0" + "d0d5c560-d485-41bf-8b8d-18a8cbcccba5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2313,13 +2313,13 @@ "1199" ], "x-ms-request-id": [ - "634dc6dd-ec88-46b1-aa7a-5e5fcf6b5f10" + "7a5f13ad-d295-42df-996e-aafb36d82811" ], "x-ms-correlation-request-id": [ - "634dc6dd-ec88-46b1-aa7a-5e5fcf6b5f10" + "7a5f13ad-d295-42df-996e-aafb36d82811" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061923Z:634dc6dd-ec88-46b1-aa7a-5e5fcf6b5f10" + "WESTUS:20230217T010939Z:7a5f13ad-d295-42df-996e-aafb36d82811" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2328,7 +2328,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:19:22 GMT" + "Fri, 17 Feb 2023 01:09:39 GMT" ], "Content-Length": [ "905" @@ -2340,28 +2340,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d49AUZJFFsPlzfa6qxFd4ghM+BuHFAFFZ6gu9wklEw=\",\r\n \"secondaryKey\": \"dYA1Uyo9PZ03agOFtM2O4sGdD3jZTnMaDd1eXxmOAps=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RyzbhWF1P23du2GByIQXA1CrH4YOKTezU2CjC3MqPCk=\",\r\n \"secondaryKey\": \"bE1Jbt2PVufSOKfMarHvvRfUE+6aSvijjBGLi6G4lpI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"qfq5N9SgQK5Z/2+VyoBpftRcdXw8sHlm027oCxYFs64=\",\r\n \"secondaryKey\": \"6aXQBPN9cp2uQt+foZyXxEEysDrsMoZUh06O6/T/u24=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"TDQXAXWf9MEFcflK7T68U4GoZLnGDl0dfh6PqhVhG60=\",\r\n \"secondaryKey\": \"yPc6ZnQl5JfMKFMZUJQaybrM6Jvd/6MqTCdso6i8x4o=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"PH8Ww3mmiWULZDeuzPOAiofWIvWLgNeSnbIddiGlChM=\",\r\n \"secondaryKey\": \"7zFWM/+edl9m+l93qyDW6lNhwaaN64i6K8lstQ+LB6s=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE5NjkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM2MDQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3730c271-2270-4ba9-b368-ab5772b0dae0" + "d0d5c560-d485-41bf-8b8d-18a8cbcccba5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2376,13 +2376,13 @@ "1198" ], "x-ms-request-id": [ - "6e7c801a-347a-47e7-8b4b-5ad98cbc30d0" + "7c97418f-3e7a-46eb-b601-842d9982efc6" ], "x-ms-correlation-request-id": [ - "6e7c801a-347a-47e7-8b4b-5ad98cbc30d0" + "7c97418f-3e7a-46eb-b601-842d9982efc6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061957Z:6e7c801a-347a-47e7-8b4b-5ad98cbc30d0" + "WESTUS:20230217T011012Z:7c97418f-3e7a-46eb-b601-842d9982efc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2391,10 +2391,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:19:57 GMT" + "Fri, 17 Feb 2023 01:10:12 GMT" ], "Content-Length": [ - "1078" + "1093" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2403,25 +2403,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"3d49AUZJFFsPlzfa6qxFd4ghM+BuHFAFFZ6gu9wklEw=\",\r\n \"secondaryKey\": \"dYA1Uyo9PZ03agOFtM2O4sGdD3jZTnMaDd1eXxmOAps=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"RyzbhWF1P23du2GByIQXA1CrH4YOKTezU2CjC3MqPCk=\",\r\n \"secondaryKey\": \"bE1Jbt2PVufSOKfMarHvvRfUE+6aSvijjBGLi6G4lpI=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"qfq5N9SgQK5Z/2+VyoBpftRcdXw8sHlm027oCxYFs64=\",\r\n \"secondaryKey\": \"6aXQBPN9cp2uQt+foZyXxEEysDrsMoZUh06O6/T/u24=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"TDQXAXWf9MEFcflK7T68U4GoZLnGDl0dfh6PqhVhG60=\",\r\n \"secondaryKey\": \"yPc6ZnQl5JfMKFMZUJQaybrM6Jvd/6MqTCdso6i8x4o=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"PH8Ww3mmiWULZDeuzPOAiofWIvWLgNeSnbIddiGlChM=\",\r\n \"secondaryKey\": \"7zFWM/+edl9m+l93qyDW6lNhwaaN64i6K8lstQ+LB6s=\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"aJ4sRIc17DAhoXNsTVj45fKq8eUGk4ZaaIQSf+LN6s0=\",\r\n \"secondaryKey\": \"uLqO/PSVqo5fR/x0aBGFXIrGd6d3+JkGCGmrNm0Rj3w=\",\r\n \"rights\": \"ServiceConnect\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n },\r\n {\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfNDhiYzJmOTAtZjI0NS00Njc5LWIyOTEtMmEzODExMGViMjZl?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTkRoaVl6Sm1PVEF0WmpJME5TMDBOamM1TFdJeU9URXRNbUV6T0RFeE1HVmlNalpsP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYjg0N2RjYmEtNDE4YS00MzIyLWE2NjYtZDM1NGE2OTcxZGM0O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWWpnME4yUmpZbUV0TkRFNFlTMDBNekl5TFdFMk5qWXRaRE0xTkdFMk9UY3haR00wTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3730c271-2270-4ba9-b368-ab5772b0dae0" + "d0d5c560-d485-41bf-8b8d-18a8cbcccba5" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2433,16 +2433,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-request-id": [ - "d0754329-c08d-472b-b411-e565bb7ef8f9" + "1cd09ef1-57a4-4fd1-be9f-4da280e66826" ], "x-ms-correlation-request-id": [ - "d0754329-c08d-472b-b411-e565bb7ef8f9" + "1cd09ef1-57a4-4fd1-be9f-4da280e66826" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061956Z:d0754329-c08d-472b-b411-e565bb7ef8f9" + "WESTUS:20230217T011011Z:1cd09ef1-57a4-4fd1-be9f-4da280e66826" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2451,7 +2451,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:19:55 GMT" + "Fri, 17 Feb 2023 01:10:11 GMT" ], "Content-Length": [ "22" @@ -2467,24 +2467,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969/IotHubKeys/ServiceKey/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE5NjkvSW90SHViS2V5cy9TZXJ2aWNlS2V5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604/IotHubKeys/ServiceKey/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM2MDQvSW90SHViS2V5cy9TZXJ2aWNlS2V5L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDctMDI=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c9a4041-2ebc-439d-9d19-856e974f959e" + "e0a95cd9-cb03-4e1b-9ae9-3bc24beb5d6b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2496,16 +2496,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "aefbdb3d-da5f-488f-bd71-abf799c33b4d" + "e754b9e9-2c30-4640-8ff1-260c040d6692" ], "x-ms-correlation-request-id": [ - "aefbdb3d-da5f-488f-bd71-abf799c33b4d" + "e754b9e9-2c30-4640-8ff1-260c040d6692" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T061957Z:aefbdb3d-da5f-488f-bd71-abf799c33b4d" + "WESTCENTRALUS:20230217T011013Z:e754b9e9-2c30-4640-8ff1-260c040d6692" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2514,10 +2514,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:19:57 GMT" + "Fri, 17 Feb 2023 01:10:12 GMT" ], "Content-Length": [ - "172" + "187" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2526,25 +2526,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"aJ4sRIc17DAhoXNsTVj45fKq8eUGk4ZaaIQSf+LN6s0=\",\r\n \"secondaryKey\": \"uLqO/PSVqo5fR/x0aBGFXIrGd6d3+JkGCGmrNm0Rj3w=\",\r\n \"rights\": \"ServiceConnect\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"ServiceKey\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/operationResults/b3NfaWRfNDY3NDkxZjEtM2NjZS00MzYyLTkwNzctZTkzNzQxODlkNmE5?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZORFkzTkRreFpqRXRNMk5qWlMwME16WXlMVGt3TnpjdFpUa3pOelF4T0Rsa05tRTU/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/operationResults/aWQ9b3NfaWRfOTM3MGI4NTEtZTNhZS00OTYwLWJiNzQtMTAzM2U1NjIwZGUzO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmT1RNM01HSTROVEV0WlROaFpTMDBPVFl3TFdKaU56UXRNVEF6TTJVMU5qSXdaR1V6TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "571ed154-59a2-450e-a4f9-4956ac38b409" + "07bc9c35-031f-4aaf-88d4-c8597daf708a" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2556,16 +2556,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "fc29170a-cc69-44ae-b783-ddca6009c7de" + "14921cfa-9103-4b54-b222-18a26813bffb" ], "x-ms-correlation-request-id": [ - "fc29170a-cc69-44ae-b783-ddca6009c7de" + "14921cfa-9103-4b54-b222-18a26813bffb" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062029Z:fc29170a-cc69-44ae-b783-ddca6009c7de" + "WESTCENTRALUS:20230217T011045Z:14921cfa-9103-4b54-b222-18a26813bffb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2574,7 +2574,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:28 GMT" + "Fri, 17 Feb 2023 01:10:44 GMT" ], "Content-Length": [ "22" @@ -2590,24 +2590,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "439ed69c-b7a3-4f9d-8960-225bf8828d74" + "5a5a9ada-eb29-40d3-9bc2-394748858f93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2622,13 +2622,13 @@ "1199" ], "x-ms-request-id": [ - "ba7bdaaf-1841-4212-b3fb-d1d0218dd256" + "fd8aab2b-3349-4912-a228-37efccdbdebc" ], "x-ms-correlation-request-id": [ - "ba7bdaaf-1841-4212-b3fb-d1d0218dd256" + "fd8aab2b-3349-4912-a228-37efccdbdebc" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062029Z:ba7bdaaf-1841-4212-b3fb-d1d0218dd256" + "WESTCENTRALUS:20230217T011046Z:fd8aab2b-3349-4912-a228-37efccdbdebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2637,7 +2637,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:29 GMT" + "Fri, 17 Feb 2023 01:10:46 GMT" ], "Content-Length": [ "229" @@ -2649,28 +2649,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Pq+FOVnuJxe6bPlrHLOckKGl1NIIMmSjZEurfxh7aM8=\",\r\n \"secondaryKey\": \"DFz8td3grMv26lIzeQK7W47uP8GaUxX2IM7fMnjpwWk=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7deb433d-80fc-4a1e-a089-1d76932e8386" + "01d0d90b-dd27-4b06-81a8-55d0f2e67621" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2685,13 +2685,13 @@ "1198" ], "x-ms-request-id": [ - "d1784dd8-0463-421e-99bd-e08b08aa46e1" + "6406b44e-1d6f-4623-abdf-30482fc54855" ], "x-ms-correlation-request-id": [ - "d1784dd8-0463-421e-99bd-e08b08aa46e1" + "6406b44e-1d6f-4623-abdf-30482fc54855" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062030Z:d1784dd8-0463-421e-99bd-e08b08aa46e1" + "WESTCENTRALUS:20230217T011047Z:6406b44e-1d6f-4623-abdf-30482fc54855" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2700,7 +2700,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:29 GMT" + "Fri, 17 Feb 2023 01:10:47 GMT" ], "Content-Length": [ "229" @@ -2712,28 +2712,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Pq+FOVnuJxe6bPlrHLOckKGl1NIIMmSjZEurfxh7aM8=\",\r\n \"secondaryKey\": \"DFz8td3grMv26lIzeQK7W47uP8GaUxX2IM7fMnjpwWk=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e78e628-e92a-4378-9591-215eefbd43f1" + "59088158-2bc4-45e0-81af-87528094f1e9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2748,13 +2748,13 @@ "1197" ], "x-ms-request-id": [ - "40d8fd70-fcfa-4680-ae50-26c74b48c3c5" + "b467d539-204b-44b7-84a3-54929872eae4" ], "x-ms-correlation-request-id": [ - "40d8fd70-fcfa-4680-ae50-26c74b48c3c5" + "b467d539-204b-44b7-84a3-54929872eae4" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062030Z:40d8fd70-fcfa-4680-ae50-26c74b48c3c5" + "WESTCENTRALUS:20230217T011048Z:b467d539-204b-44b7-84a3-54929872eae4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2763,7 +2763,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:30 GMT" + "Fri, 17 Feb 2023 01:10:48 GMT" ], "Content-Length": [ "229" @@ -2775,28 +2775,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Pq+FOVnuJxe6bPlrHLOckKGl1NIIMmSjZEurfxh7aM8=\",\r\n \"secondaryKey\": \"DFz8td3grMv26lIzeQK7W47uP8GaUxX2IM7fMnjpwWk=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bdb2dc8-a38f-4dd4-8af0-337c1b3d08e3" + "10c495e5-bded-46d9-947d-7599a35655e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2808,16 +2808,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "10c0e0cf-6751-49a7-a652-72d41e964f10" + "c0dc094c-61e0-46eb-adf9-dc7d9deec3d1" ], "x-ms-correlation-request-id": [ - "10c0e0cf-6751-49a7-a652-72d41e964f10" + "c0dc094c-61e0-46eb-adf9-dc7d9deec3d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062031Z:10c0e0cf-6751-49a7-a652-72d41e964f10" + "WESTCENTRALUS:20230217T011049Z:c0dc094c-61e0-46eb-adf9-dc7d9deec3d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2826,7 +2826,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:30 GMT" + "Fri, 17 Feb 2023 01:10:49 GMT" ], "Content-Length": [ "229" @@ -2838,28 +2838,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Pq+FOVnuJxe6bPlrHLOckKGl1NIIMmSjZEurfxh7aM8=\",\r\n \"secondaryKey\": \"DFz8td3grMv26lIzeQK7W47uP8GaUxX2IM7fMnjpwWk=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55b70bea-56ec-4d3b-87ed-92a94c02697c" + "57296884-e139-405c-b09f-fcb0542e17df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2871,16 +2871,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "cfd34f67-801c-4824-bcce-c0255c9576d7" + "6dada0c2-c57a-43dc-917f-2acb9cc73b39" ], "x-ms-correlation-request-id": [ - "cfd34f67-801c-4824-bcce-c0255c9576d7" + "6dada0c2-c57a-43dc-917f-2acb9cc73b39" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062031Z:cfd34f67-801c-4824-bcce-c0255c9576d7" + "WESTCENTRALUS:20230217T011050Z:6dada0c2-c57a-43dc-917f-2acb9cc73b39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2889,7 +2889,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:30 GMT" + "Fri, 17 Feb 2023 01:10:50 GMT" ], "Content-Length": [ "229" @@ -2901,28 +2901,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Pq+FOVnuJxe6bPlrHLOckKGl1NIIMmSjZEurfxh7aM8=\",\r\n \"secondaryKey\": \"DFz8td3grMv26lIzeQK7W47uP8GaUxX2IM7fMnjpwWk=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d29340d-1478-4020-ae2a-ca8f9d1b7db8" + "d4941305-1eb6-454d-931d-c5807d56ac6a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2934,16 +2934,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-request-id": [ - "be78d9c0-3139-42de-ba7c-8e1e209c1ccf" + "49d8ae4a-b374-499e-b387-f62ab676c2c9" ], "x-ms-correlation-request-id": [ - "be78d9c0-3139-42de-ba7c-8e1e209c1ccf" + "49d8ae4a-b374-499e-b387-f62ab676c2c9" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062031Z:be78d9c0-3139-42de-ba7c-8e1e209c1ccf" + "WESTCENTRALUS:20230217T011051Z:49d8ae4a-b374-499e-b387-f62ab676c2c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2952,7 +2952,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:31 GMT" + "Fri, 17 Feb 2023 01:10:51 GMT" ], "Content-Length": [ "229" @@ -2964,28 +2964,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Pq+FOVnuJxe6bPlrHLOckKGl1NIIMmSjZEurfxh7aM8=\",\r\n \"secondaryKey\": \"DFz8td3grMv26lIzeQK7W47uP8GaUxX2IM7fMnjpwWk=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b272cec5-84b0-4a9e-9944-dd554d412594" + "b917879e-7711-46ed-b9c4-758c5e576f27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2997,16 +2997,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-request-id": [ - "f3d94c03-2377-49be-816f-762177ece25c" + "967faaab-ea0d-414d-b446-58f1098842ba" ], "x-ms-correlation-request-id": [ - "f3d94c03-2377-49be-816f-762177ece25c" + "967faaab-ea0d-414d-b446-58f1098842ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062032Z:f3d94c03-2377-49be-816f-762177ece25c" + "WESTCENTRALUS:20230217T011052Z:967faaab-ea0d-414d-b446-58f1098842ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3015,7 +3015,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:31 GMT" + "Fri, 17 Feb 2023 01:10:52 GMT" ], "Content-Length": [ "229" @@ -3027,28 +3027,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Pq+FOVnuJxe6bPlrHLOckKGl1NIIMmSjZEurfxh7aM8=\",\r\n \"secondaryKey\": \"DFz8td3grMv26lIzeQK7W47uP8GaUxX2IM7fMnjpwWk=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0ea9d40-5ec5-4b06-8fed-d7229bd49a5f" + "1eae4567-2ed2-47d8-9ce3-97964e7f8802" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3060,16 +3060,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-request-id": [ - "8576e474-fbcc-4a13-81b6-3e0f3ee34908" + "13e8ff01-7f00-433e-8ab5-20897998d4c6" ], "x-ms-correlation-request-id": [ - "8576e474-fbcc-4a13-81b6-3e0f3ee34908" + "13e8ff01-7f00-433e-8ab5-20897998d4c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062032Z:8576e474-fbcc-4a13-81b6-3e0f3ee34908" + "WESTCENTRALUS:20230217T011053Z:13e8ff01-7f00-433e-8ab5-20897998d4c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3078,7 +3078,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:31 GMT" + "Fri, 17 Feb 2023 01:10:52 GMT" ], "Content-Length": [ "229" @@ -3090,28 +3090,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Pq+FOVnuJxe6bPlrHLOckKGl1NIIMmSjZEurfxh7aM8=\",\r\n \"secondaryKey\": \"DFz8td3grMv26lIzeQK7W47uP8GaUxX2IM7fMnjpwWk=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59e381a5-16b2-49b3-8366-eb85b1c09473" + "680f6052-9ddc-4e63-957f-93ecab442a69" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3123,16 +3123,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-request-id": [ - "ff54c128-9f7e-4cc9-bd1b-1d904823a249" + "3d9f952b-f4de-4b42-9e23-2576a3123753" ], "x-ms-correlation-request-id": [ - "ff54c128-9f7e-4cc9-bd1b-1d904823a249" + "3d9f952b-f4de-4b42-9e23-2576a3123753" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062033Z:ff54c128-9f7e-4cc9-bd1b-1d904823a249" + "WESTCENTRALUS:20230217T011054Z:3d9f952b-f4de-4b42-9e23-2576a3123753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3141,7 +3141,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:32 GMT" + "Fri, 17 Feb 2023 01:10:54 GMT" ], "Content-Length": [ "229" @@ -3153,28 +3153,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Pq+FOVnuJxe6bPlrHLOckKGl1NIIMmSjZEurfxh7aM8=\",\r\n \"secondaryKey\": \"DFz8td3grMv26lIzeQK7W47uP8GaUxX2IM7fMnjpwWk=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07f83df9-9d9f-4343-b6a6-10e7971c7cef" + "fbeab7cf-2fc3-468b-b32e-657f555934fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3186,16 +3186,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1196" ], "x-ms-request-id": [ - "ad25f91b-ee6e-474b-83f9-7f764c1ad156" + "1f9f14dc-fcfe-4862-807b-7b7fe81aeaf7" ], "x-ms-correlation-request-id": [ - "ad25f91b-ee6e-474b-83f9-7f764c1ad156" + "1f9f14dc-fcfe-4862-807b-7b7fe81aeaf7" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062033Z:ad25f91b-ee6e-474b-83f9-7f764c1ad156" + "WESTCENTRALUS:20230217T011055Z:1f9f14dc-fcfe-4862-807b-7b7fe81aeaf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3204,7 +3204,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:32 GMT" + "Fri, 17 Feb 2023 01:10:55 GMT" ], "Content-Length": [ "229" @@ -3216,28 +3216,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Pq+FOVnuJxe6bPlrHLOckKGl1NIIMmSjZEurfxh7aM8=\",\r\n \"secondaryKey\": \"DFz8td3grMv26lIzeQK7W47uP8GaUxX2IM7fMnjpwWk=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/listkeys?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0L2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/listkeys?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczL2xpc3RrZXlzP2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b500bcbe-fde7-46bf-b80f-b0ecc749a3b2" + "efdb7612-64b1-421c-93c6-b2ec93138b68" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3249,16 +3249,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-request-id": [ - "451d811d-7185-415b-aa70-2f1c078e15bc" + "5d2b0e28-3a5a-4753-9585-a807073fb8bc" ], "x-ms-correlation-request-id": [ - "451d811d-7185-415b-aa70-2f1c078e15bc" + "5d2b0e28-3a5a-4753-9585-a807073fb8bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062034Z:451d811d-7185-415b-aa70-2f1c078e15bc" + "WESTUS:20230217T011056Z:5d2b0e28-3a5a-4753-9585-a807073fb8bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3267,7 +3267,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:20:33 GMT" + "Fri, 17 Feb 2023 01:10:55 GMT" ], "Content-Length": [ "229" @@ -3279,25 +3279,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Pq+FOVnuJxe6bPlrHLOckKGl1NIIMmSjZEurfxh7aM8=\",\r\n \"secondaryKey\": \"DFz8td3grMv26lIzeQK7W47uP8GaUxX2IM7fMnjpwWk=\",\r\n \"rights\": \"ServiceConfig, DeviceConnect, EnrollmentWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"provisioningserviceowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConfig, EnrollmentWrite, DeviceConnect\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/provisioningServices/ps8484/operationResults/b3NfaWRfNjQ5NzZiZDktZmRlMC00MzAyLWIwMjAtOGZiZjU4MzcyYmZi?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM4NDg0L29wZXJhdGlvblJlc3VsdHMvYjNOZmFXUmZOalE1TnpaaVpEa3RabVJsTUMwME16QXlMV0l3TWpBdE9HWmlaalU0TXpjeVltWmk/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/provisioningServices/ps5073/operationResults/aWQ9b3NfaWRfMjcxMmM1NzEtNWNjNy00NThjLThjNGQtMTRlY2YzZjMwODhmO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHM1MDczL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmTWpjeE1tTTFOekV0TldOak55MDBOVGhqTFRoak5HUXRNVFJsWTJZelpqTXdPRGhtTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27a569a8-49ba-41d3-b0b9-03f20aad7a88" + "a613eeed-8e41-42be-87de-ce5e2b6cbbc8" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3309,16 +3309,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11997" ], "x-ms-request-id": [ - "e08a2139-9e84-4c3a-9481-f15ad42d3dd3" + "2739ac43-a911-4bd6-a549-aee54cfa0fdd" ], "x-ms-correlation-request-id": [ - "e08a2139-9e84-4c3a-9481-f15ad42d3dd3" + "2739ac43-a911-4bd6-a549-aee54cfa0fdd" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062106Z:e08a2139-9e84-4c3a-9481-f15ad42d3dd3" + "WESTUS:20230217T011127Z:2739ac43-a911-4bd6-a549-aee54cfa0fdd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3327,7 +3327,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:21:05 GMT" + "Fri, 17 Feb 2023 01:11:27 GMT" ], "Content-Length": [ "22" @@ -3343,24 +3343,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9949/providers/Microsoft.Devices/IotHubs/ps1969?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzOTk0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE5Njk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps7728/providers/Microsoft.Devices/IotHubs/ps3604?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNzcyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczM2MDQ/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33c75c50-8a67-423c-9ab8-92b2c31469d4" + "0b2942e6-a71e-44a9-b0ac-e70e1b12ffb3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3369,13 +3369,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfM2QwZWZlMjUtZjIyNy00MThiLTlhMDItZWY2NDBmZjg2NmY5?api-version=2020-03-01&operationSource=os_ih" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNTExYzgxNWUtMTE4Yy00NjQ5LTk4M2MtOTBmZTM2OWQyOTM2O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfM2QwZWZlMjUtZjIyNy00MThiLTlhMDItZWY2NDBmZjg2NmY5?api-version=2020-03-01&operationSource=os_ih&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNTExYzgxNWUtMTE4Yy00NjQ5LTk4M2MtOTBmZTM2OWQyOTM2O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3384,13 +3384,13 @@ "14999" ], "x-ms-request-id": [ - "4b653161-2f68-4484-9a65-c3bdcc994e6d" + "1c5b4b73-af96-4dc6-bb73-a452bfdaf80d" ], "x-ms-correlation-request-id": [ - "4b653161-2f68-4484-9a65-c3bdcc994e6d" + "1c5b4b73-af96-4dc6-bb73-a452bfdaf80d" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062107Z:4b653161-2f68-4484-9a65-c3bdcc994e6d" + "WESTCENTRALUS:20230217T011129Z:1c5b4b73-af96-4dc6-bb73-a452bfdaf80d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3399,7 +3399,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:21:06 GMT" + "Fri, 17 Feb 2023 01:11:29 GMT" ], "Content-Length": [ "4" @@ -3415,81 +3415,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfM2QwZWZlMjUtZjIyNy00MThiLTlhMDItZWY2NDBmZjg2NmY5?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJRd1pXWmxNalV0WmpJeU55MDBNVGhpTFRsaE1ESXRaV1kyTkRCbVpqZzJObVk1P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNTExYzgxNWUtMTE4Yy00NjQ5LTk4M2MtOTBmZTM2OWQyOTM2O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTlRFeFl6Z3hOV1V0TVRFNFl5MDBOalE1TFRrNE0yTXRPVEJtWlRNMk9XUXlPVE0yTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33c75c50-8a67-423c-9ab8-92b2c31469d4" + "0b2942e6-a71e-44a9-b0ac-e70e1b12ffb3" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.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": [ - "bb404b11-3dd2-434c-8e88-f358f0d8f6e5" - ], - "x-ms-correlation-request-id": [ - "bb404b11-3dd2-434c-8e88-f358f0d8f6e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T062122Z:bb404b11-3dd2-434c-8e88-f358f0d8f6e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:21: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/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfM2QwZWZlMjUtZjIyNy00MThiLTlhMDItZWY2NDBmZjg2NmY5?api-version=2020-03-01&operationSource=os_ih&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJRd1pXWmxNalV0WmpJeU55MDBNVGhpTFRsaE1ESXRaV1kyTkRCbVpqZzJObVk1P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2loJmFzeW5jaW5mbw==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "33c75c50-8a67-423c-9ab8-92b2c31469d4" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3501,16 +3441,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "4ccaebd8-aaa4-4531-9b18-0833e0358071" + "21668bd8-f2ad-4bd5-ac74-188bf8e179ce" ], "x-ms-correlation-request-id": [ - "4ccaebd8-aaa4-4531-9b18-0833e0358071" + "21668bd8-f2ad-4bd5-ac74-188bf8e179ce" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062137Z:4ccaebd8-aaa4-4531-9b18-0833e0358071" + "WESTCENTRALUS:20230217T011145Z:21668bd8-f2ad-4bd5-ac74-188bf8e179ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3519,7 +3459,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:21:37 GMT" + "Fri, 17 Feb 2023 01:11:44 GMT" ], "Content-Length": [ "22" @@ -3535,21 +3475,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfM2QwZWZlMjUtZjIyNy00MThiLTlhMDItZWY2NDBmZjg2NmY5?api-version=2020-03-01&operationSource=os_ih", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9vcGVyYXRpb25SZXN1bHRzL2IzTmZhV2hmTTJRd1pXWmxNalV0WmpJeU55MDBNVGhpTFRsaE1ESXRaV1kyTkRCbVpqZzJObVk1P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW9zX2lo", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNTExYzgxNWUtMTE4Yy00NjQ5LTk4M2MtOTBmZTM2OWQyOTM2O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTlRFeFl6Z3hOV1V0TVRFNFl5MDBOalE1TFRrNE0yTXRPVEJtWlRNMk9XUXlPVE0yTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXI=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33c75c50-8a67-423c-9ab8-92b2c31469d4" + "0b2942e6-a71e-44a9-b0ac-e70e1b12ffb3" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3558,7 +3498,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/operationResults/b3NfaWhfM2QwZWZlMjUtZjIyNy00MThiLTlhMDItZWY2NDBmZjg2NmY5?api-version=2020-03-01&operationSource=os_ih" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNTExYzgxNWUtMTE4Yy00NjQ5LTk4M2MtOTBmZTM2OWQyOTM2O3JlZ2lvbj13ZXN0dXM%3D?api-version=2021-07-02&operationSource=other" ], "Retry-After": [ "15" @@ -3567,16 +3507,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-request-id": [ - "826cc9d8-ee64-4d03-a2da-b181fe52662c" + "388d3a75-afe2-4ed9-99f8-2c29fbb0ba17" ], "x-ms-correlation-request-id": [ - "826cc9d8-ee64-4d03-a2da-b181fe52662c" + "388d3a75-afe2-4ed9-99f8-2c29fbb0ba17" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062138Z:826cc9d8-ee64-4d03-a2da-b181fe52662c" + "WESTCENTRALUS:20230217T011145Z:388d3a75-afe2-4ed9-99f8-2c29fbb0ba17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3585,7 +3525,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:21:37 GMT" + "Fri, 17 Feb 2023 01:11:44 GMT" ], "Expires": [ "-1" @@ -3598,24 +3538,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps9949?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzOTk0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps7728?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzNzcyOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1cefc3ed-c6d2-46ca-aed6-49b38c2bcf12" + "7c979b45-6434-4ae4-ba62-2f507c950167" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3624,7 +3564,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3633,13 +3573,13 @@ "14999" ], "x-ms-request-id": [ - "adf20069-fa68-40cc-a407-1024214ef416" + "05ec3749-0489-4fe3-b4ba-6bb21e546a47" ], "x-ms-correlation-request-id": [ - "adf20069-fa68-40cc-a407-1024214ef416" + "05ec3749-0489-4fe3-b4ba-6bb21e546a47" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062138Z:adf20069-fa68-40cc-a407-1024214ef416" + "WESTCENTRALUS:20230217T011146Z:05ec3749-0489-4fe3-b4ba-6bb21e546a47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3648,7 +3588,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:21:38 GMT" + "Fri, 17 Feb 2023 01:11:45 GMT" ], "Expires": [ "-1" @@ -3661,18 +3601,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU5Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3681,7 +3621,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3690,13 +3630,13 @@ "11999" ], "x-ms-request-id": [ - "45ce9792-79f7-4ffd-9346-a06878a88add" + "1661f956-a4ba-4e3c-a5fc-9c6fb13a4af2" ], "x-ms-correlation-request-id": [ - "45ce9792-79f7-4ffd-9346-a06878a88add" + "1661f956-a4ba-4e3c-a5fc-9c6fb13a4af2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062154Z:45ce9792-79f7-4ffd-9346-a06878a88add" + "WESTCENTRALUS:20230217T011201Z:1661f956-a4ba-4e3c-a5fc-9c6fb13a4af2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3705,7 +3645,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:21:53 GMT" + "Fri, 17 Feb 2023 01:12:01 GMT" ], "Expires": [ "-1" @@ -3718,18 +3658,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU5Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3738,7 +3678,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3747,13 +3687,13 @@ "11998" ], "x-ms-request-id": [ - "45ca3fac-d2b4-48da-9ea9-55202f564468" + "cd31b585-9108-4184-a819-5880ad8959d1" ], "x-ms-correlation-request-id": [ - "45ca3fac-d2b4-48da-9ea9-55202f564468" + "cd31b585-9108-4184-a819-5880ad8959d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062209Z:45ca3fac-d2b4-48da-9ea9-55202f564468" + "WESTCENTRALUS:20230217T011216Z:cd31b585-9108-4184-a819-5880ad8959d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3762,7 +3702,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:22:08 GMT" + "Fri, 17 Feb 2023 01:12:16 GMT" ], "Expires": [ "-1" @@ -3775,18 +3715,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU5Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3795,7 +3735,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3804,13 +3744,13 @@ "11997" ], "x-ms-request-id": [ - "213035d4-666b-402d-97cc-6d9bb2c1dd45" + "4cec99fd-75b1-4862-bb6f-0f081930897c" ], "x-ms-correlation-request-id": [ - "213035d4-666b-402d-97cc-6d9bb2c1dd45" + "4cec99fd-75b1-4862-bb6f-0f081930897c" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062224Z:213035d4-666b-402d-97cc-6d9bb2c1dd45" + "WESTCENTRALUS:20230217T011231Z:4cec99fd-75b1-4862-bb6f-0f081930897c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3819,7 +3759,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:22:23 GMT" + "Fri, 17 Feb 2023 01:12:31 GMT" ], "Expires": [ "-1" @@ -3832,75 +3772,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU5Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "cbd30493-2801-4c14-a457-fc37f6b3dd27" - ], - "x-ms-correlation-request-id": [ - "cbd30493-2801-4c14-a457-fc37f6b3dd27" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T062239Z:cbd30493-2801-4c14-a457-fc37f6b3dd27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:22:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU5Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3909,22 +3792,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-request-id": [ - "d1023573-eb81-44e0-9254-0eed0c415a49" + "3c25b757-4049-4823-9f83-a3ebb9f51d4b" ], "x-ms-correlation-request-id": [ - "d1023573-eb81-44e0-9254-0eed0c415a49" + "3c25b757-4049-4823-9f83-a3ebb9f51d4b" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062254Z:d1023573-eb81-44e0-9254-0eed0c415a49" + "WESTCENTRALUS:20230217T011246Z:3c25b757-4049-4823-9f83-a3ebb9f51d4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3933,7 +3816,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:22:53 GMT" + "Fri, 17 Feb 2023 01:12:46 GMT" ], "Expires": [ "-1" @@ -3946,75 +3829,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU5Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "4619a23b-f216-463c-8366-1f7abec27f69" - ], - "x-ms-correlation-request-id": [ - "4619a23b-f216-463c-8366-1f7abec27f69" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T062309Z:4619a23b-f216-463c-8366-1f7abec27f69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:23:09 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU5Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4023,16 +3849,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" ], "x-ms-request-id": [ - "983427f0-1357-45d6-9c07-5a62684c93c8" + "ea755617-e509-4de0-9caa-709849e4d55f" ], "x-ms-correlation-request-id": [ - "983427f0-1357-45d6-9c07-5a62684c93c8" + "ea755617-e509-4de0-9caa-709849e4d55f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062324Z:983427f0-1357-45d6-9c07-5a62684c93c8" + "WESTCENTRALUS:20230217T011301Z:ea755617-e509-4de0-9caa-709849e4d55f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4041,7 +3867,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:23:23 GMT" + "Fri, 17 Feb 2023 01:13:01 GMT" ], "Expires": [ "-1" @@ -4054,18 +3880,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk5NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprNU5Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4074,16 +3900,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" ], "x-ms-request-id": [ - "29373558-95d1-49a7-b347-750ce63f56b7" + "b0bef05e-d075-4a1a-b73b-b92d13ac5b6f" ], "x-ms-correlation-request-id": [ - "29373558-95d1-49a7-b347-750ce63f56b7" + "b0bef05e-d075-4a1a-b73b-b92d13ac5b6f" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T062324Z:29373558-95d1-49a7-b347-750ce63f56b7" + "WESTCENTRALUS:20230217T011301Z:b0bef05e-d075-4a1a-b73b-b92d13ac5b6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4092,7 +3918,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:23:24 GMT" + "Fri, 17 Feb 2023 01:13:01 GMT" ], "Expires": [ "-1" @@ -4107,11 +3933,11 @@ ], "Names": { "Test-AzIotDpsRegistrationLifeCycle": [ - "ps8484", - "ps9949", - "ps1969", - "ps5697", - "ps655" + "ps5073", + "ps7728", + "ps3604", + "ps1853", + "ps4893" ] }, "Variables": { diff --git a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsTests/IotDpsLifeCycle.json b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsTests/IotDpsLifeCycle.json index 411a9816bf51..648cda73f8f2 100644 --- a/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsTests/IotDpsLifeCycle.json +++ b/src/DeviceProvisioningServices/DeviceProvisioningServices.Test/SessionRecords/Commands.DeviceProvisioningServices.Test.IotDpsTests/IotDpsLifeCycle.json @@ -4,21 +4,21 @@ "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fee315a-a947-4af4-a78c-53f9f06f1ead" + "d772c6c5-de2f-4c8a-9cf4-837ca066fb74" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "97182ba1-91d5-410a-a134-083594aa1086" + "74a48d8a-72ab-4e7d-8323-23fc28281106" ], "x-ms-correlation-request-id": [ - "97182ba1-91d5-410a-a134-083594aa1086" + "74a48d8a-72ab-4e7d-8323-23fc28281106" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063850Z:97182ba1-91d5-410a-a134-083594aa1086" + "WESTCENTRALUS:20230217T010442Z:74a48d8a-72ab-4e7d-8323-23fc28281106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:38:49 GMT" + "Fri, 17 Feb 2023 01:04:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,31 +54,31 @@ "-1" ], "Content-Length": [ - "5586" + "9626" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\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 \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\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 \"Germany North\",\r\n \"Germany West Central\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central\",\r\n \"Australia Central 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\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 \"2018-12-01-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 ],\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/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"roleDefinitionId\": \"d04fc6c0-fc10-4ab8-b7de-c979247c3b65\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"provisioningServiceOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-09-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations/provisioningServiceOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway EAST\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\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\": \"IotHubs/failover\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"Australia Central\"\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/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/provisioningServices?api-version=2017-11-15", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTExLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "190a1ebb-ef4f-4660-becc-086984912b12" + "8a5ea097-1528-496c-ae49-874be22f9a66" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -86,20 +86,28 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11991" ], "x-ms-request-id": [ - "cd5b1ed3-873a-4eec-ae2c-5f3e09388faf" + "22d2b9b2-44e7-467f-9cab-41796773fcf0" ], "x-ms-correlation-request-id": [ - "cd5b1ed3-873a-4eec-ae2c-5f3e09388faf" + "22d2b9b2-44e7-467f-9cab-41796773fcf0" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063850Z:cd5b1ed3-873a-4eec-ae2c-5f3e09388faf" + "WESTCENTRALUS:20230217T010443Z:22d2b9b2-44e7-467f-9cab-41796773fcf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,38 +116,37 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:38:50 GMT" - ], - "Content-Length": [ - "5927" + "Fri, 17 Feb 2023 01:04:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "26204" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"etag\": \"AAAAAALBK9M=\",\r\n \"name\": \"TestIotExtDPS1\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"TestIotExt1.azure-devices.net\",\r\n \"connectionString\": \"HostName=TestIotExt1.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus2\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"TestIotExtDPS1.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne000EB3E4\"\r\n },\r\n \"resourcegroup\": \"TestCLI\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/TestCLI/providers/Microsoft.Devices/provisioningServices/TestIotExtDPS1\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAXY5xA=\",\r\n \"name\": \"rk-iot-dps\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"rk-test-hub.azure-devices.net\",\r\n \"connectionString\": \"HostName=rk-test-hub.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"name\": \"rk-cli-int-test-hub.azure-devices.net\",\r\n \"connectionString\": \"HostName=rk-cli-int-test-hub.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus2\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"rk-iot-dps.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne000F596C\"\r\n },\r\n \"resourcegroup\": \"rk-iot-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/provisioningServices/rk-iot-dps\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAPRKrk=\",\r\n \"name\": \"az-cli-int-test-dps\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"az-cli-int-test-hub.azure-devices.net\",\r\n \"connectionString\": \"HostName=az-cli-int-test-hub.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus2\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"az-cli-int-test-dps.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0013E56A\"\r\n },\r\n \"resourcegroup\": \"cli-int-test-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/provisioningServices/az-cli-int-test-dps\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAcQ8Z4=\",\r\n \"name\": \"pamontg-private-links\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"pamontg.azure-devices.net\",\r\n \"connectionString\": \"HostName=pamontg.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"westus2\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"pamontg-private-links.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne001A0B6A\",\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"resourcegroup\": \"pamontg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/pamontg/providers/Microsoft.Devices/provisioningServices/pamontg-private-links\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAV6y3A=\",\r\n \"name\": \"vilit-dps\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"vilit-dps.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne001C3269\"\r\n },\r\n \"resourcegroup\": \"vilit\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/vilit/providers/Microsoft.Devices/provisioningServices/vilit-dps\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAYB7Ys=\",\r\n \"name\": \"vilit-test-cli-dps\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"vilit-test-cli-hub.azure-devices.net\",\r\n \"connectionString\": \"HostName=vilit-test-cli-hub.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"vilit-test-cli-dps.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne001DDC0F\"\r\n },\r\n \"resourcegroup\": \"vilit-az-cli\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/vilit-az-cli/providers/Microsoft.Devices/provisioningServices/vilit-test-cli-dps\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAAbX4Pg=\",\r\n \"name\": \"ps5037\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5037.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00222AA6\"\r\n },\r\n \"resourcegroup\": \"ps2442\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2442/providers/Microsoft.Devices/provisioningServices/ps5037\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"etag\": \"AAAAAAukgLY=\",\r\n \"name\": \"rk-iot-dps2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"rk-iot-dps2.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00303945\"\r\n },\r\n \"resourcegroup\": \"rk-iot-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/provisioningServices/rk-iot-dps2\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"a\": \"b\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAA2tbOM=\",\r\n \"name\": \"rkesslerDPSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"rkesslerDPSWest.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne004CBD6C\",\r\n \"ipFilterRules\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableDataResidency\": false\r\n },\r\n \"resourcegroup\": \"rkesslerTest\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/rkesslerTest/providers/Microsoft.Devices/provisioningServices/rkesslerDPSWest\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAAA2tcto=\",\r\n \"name\": \"rkesslerDPSWest2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"rkesslerDPSWest2.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne004CBD84\",\r\n \"ipFilterRules\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableDataResidency\": false\r\n },\r\n \"resourcegroup\": \"rkesslerWest\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/rkesslerWest/providers/Microsoft.Devices/provisioningServices/rkesslerDPSWest2\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABbaS8g=\",\r\n \"name\": \"ps7160\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps7160.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097B1CB\"\r\n },\r\n \"resourcegroup\": \"ps9183\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps9183/providers/Microsoft.Devices/provisioningServices/ps7160\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABber5w=\",\r\n \"name\": \"ps6543\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps6543.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D222\"\r\n },\r\n \"resourcegroup\": \"ps8122\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps8122/providers/Microsoft.Devices/provisioningServices/ps6543\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABbe52o=\",\r\n \"name\": \"elsietestDPS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"elsietestDPS.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00963C72\"\r\n },\r\n \"resourcegroup\": \"jiacjutest\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/jiacjutest/providers/Microsoft.Devices/provisioningServices/elsietestDPS\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABLUtnE=\",\r\n \"name\": \"rkesslerDPSEast\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"rkesslerEastEUAP.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"name\": \"rkesslerCentralEUAP.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"name\": \"rkesslerHubWestUS2.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus2\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"rkesslerDPSEast.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne004CBD2C\",\r\n \"ipFilterRules\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"enableDataResidency\": false\r\n },\r\n \"resourcegroup\": \"rkesslerTest\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/rkesslerTest/providers/Microsoft.Devices/provisioningServices/rkesslerDPSEast\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABPsp4w=\",\r\n \"name\": \"vilit-dps-test\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"vilit-hub-test.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"name\": \"vilit-hub-test-101.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"vilit-dps-test.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0061898D\"\r\n },\r\n \"resourcegroup\": \"vilit\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/vilit/providers/Microsoft.Devices/provisioningServices/vilit-dps-test\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABL8UwI=\",\r\n \"name\": \"jeremyJonesDps1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"jeremyjonesIotHub1.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"centraluseuap\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"jeremyJonesDps1.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0063F764\",\r\n \"enableDataResidency\": false\r\n },\r\n \"resourcegroup\": \"jeremyjones-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/provisioningServices/jeremyJonesDps1\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"testTag\": \"value1\",\r\n \"anotherTag\": \"1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABNqF08=\",\r\n \"name\": \"JingDPS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"JingHub.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"JingDPS.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne007AA572\",\r\n \"enableDataResidency\": false\r\n },\r\n \"resourcegroup\": \"Jingrg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/Jingrg/providers/Microsoft.Devices/provisioningServices/JingDPS\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABQO+MA=\",\r\n \"name\": \"rkesslerDPSUndefinedAP\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"rkesslerDPSUndefinedAP.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne00803B16\",\r\n \"enableDataResidency\": false\r\n },\r\n \"resourcegroup\": \"rkesslerTest\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/rkesslerTest/providers/Microsoft.Devices/provisioningServices/rkesslerDPSUndefinedAP\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABZiX2M=\",\r\n \"name\": \"thana-dps\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"thana-hub.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"thana-dps.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0093AC9C\",\r\n \"enableDataResidency\": false\r\n },\r\n \"resourcegroup\": \"thana-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/thana-rg/providers/Microsoft.Devices/provisioningServices/thana-dps\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABZi0zI=\",\r\n \"name\": \"ilieenrollmentsbugbash\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"ilienorway.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"norwaywest\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ilieenrollmentsbugbash.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0093ACA0\",\r\n \"enableDataResidency\": false\r\n },\r\n \"resourcegroup\": \"iliesrg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/iliesrg/providers/Microsoft.Devices/provisioningServices/ilieenrollmentsbugbash\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABZii+4=\",\r\n \"name\": \"askhura-dps-bash\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"fileupload-icm.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"name\": \"a11ytest.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"name\": \"adu-post-ga-testing-hub.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"askhura-dps-bash.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0093ADA4\",\r\n \"enableDataResidency\": false\r\n },\r\n \"resourcegroup\": \"askhura-test-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/provisioningServices/askhura-dps-bash\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABaJsCU=\",\r\n \"name\": \"enrollment-tests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"enrollment-tests.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0094F632\",\r\n \"enableDataResidency\": false\r\n },\r\n \"resourcegroup\": \"raharri\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/raharri/providers/Microsoft.Devices/provisioningServices/enrollment-tests\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABZiIzE=\",\r\n \"name\": \"Jingtestnewenrollment\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"JingHub.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"Jingtestnewenrollment.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0091F8C3\",\r\n \"enableDataResidency\": false\r\n },\r\n \"resourcegroup\": \"jingrg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/jingrg/providers/Microsoft.Devices/provisioningServices/Jingtestnewenrollment\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABPts84=\",\r\n \"name\": \"rk-iot-dps\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"rk-test-hub.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"name\": \"rk-cli-test-hub-2.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"name\": \"test-dps-hub-716b61608abc4ea3a05e63acc97797aa.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"name\": \"test-dps-hub-549838ab2711475fb7ceba75f574e6e1.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"name\": \"test-dps-hub-b53d868cb6db442689027aa07af2186b.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"name\": \"test-dps-hub-458531e894ab4a358440e5dfef913436.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"name\": \"test-dps-hub-5f98492181584fd9b33d2e9fcfdc3fb7.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"name\": \"test-dps-hub-efb8991969bb405ca947ff3663475bf3.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"name\": \"test-dps-hub-f3f4bfcbd94e42d69b62b5a8376c38e2.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"name\": \"test-dps-hub-fe46fdd9ff7a4ceeb6f5dd123e07dbd8.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"name\": \"test-dps-hub-f92d700be48644bd89a96d207912e00f.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"name\": \"test-dps-hub-2bd3ed7644f6469da9b0e41860d448f0.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"name\": \"test-dps-hub-632d669cfec54d51a5f69ea7b929abe2.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus2\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"rk-iot-dps.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne000F596C\"\r\n },\r\n \"resourcegroup\": \"rk-iot-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/provisioningServices/rk-iot-dps\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABYPRvw=\",\r\n \"name\": \"adhocDps1\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"eddieHub01.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus2\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"adhocDps1.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0090F2D3\"\r\n },\r\n \"resourcegroup\": \"ghActionDemo\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ghActionDemo/providers/Microsoft.Devices/provisioningServices/adhocDps1\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABRs23Q=\",\r\n \"name\": \"askhura-certificate-flow\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"fileupload-icm.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"name\": \"askhura-canary-hub.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"name\": \"askhura-adu-hub.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"name\": \"raharri-test-1.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"name\": \"deleteme4.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"name\": \"askhura-basic-hub.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Static\",\r\n \"serviceOperationsHostName\": \"askhura-certificate-flow.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne004CFFF9\"\r\n },\r\n \"resourcegroup\": \"askhura-test-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/provisioningServices/askhura-certificate-flow\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"vrsion\": \"1.0.0.0\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABZikHM=\",\r\n \"name\": \"raharri-dps-test-1\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"applyAllocationPolicy\": true,\r\n \"allocationWeight\": 1,\r\n \"name\": \"raharri-test-hub-1.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"raharri-dps-test-1.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002BCE21\",\r\n \"ipFilterRules\": [],\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"resourcegroup\": \"raharri\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/raharri/providers/Microsoft.Devices/provisioningServices/raharri-dps-test-1\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"raharritesttag\": \"testval1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABazuDk=\",\r\n \"name\": \"rkesslerDPSCanary2\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"iliesfreehub.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"name\": \"jeremyjonesHub4Adu.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"name\": \"ilienorway.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"norwaywest\"\r\n },\r\n {\r\n \"name\": \"thana-hub.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Static\",\r\n \"serviceOperationsHostName\": \"rkesslerDPSCanary2.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global-canary.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne007988B7\",\r\n \"enableDataResidency\": false\r\n },\r\n \"resourcegroup\": \"rkesslerTest\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/rkesslerTest/providers/Microsoft.Devices/provisioningServices/rkesslerDPSCanary2\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABazug8=\",\r\n \"name\": \"rkesslerDPSCanary\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"rkesslerDPSCanary.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global-canary.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne007D9896\",\r\n \"enableDataResidency\": false\r\n },\r\n \"resourcegroup\": \"rkesslerTest\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/rkesslerTest/providers/Microsoft.Devices/provisioningServices/rkesslerDPSCanary\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABazxHU=\",\r\n \"name\": \"jeremyjonesDpsCanary\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"jeremyjonesIotHub1.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"jeremyjonesDpsCanary.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global-canary.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne008261DF\",\r\n \"enableDataResidency\": false\r\n },\r\n \"resourcegroup\": \"jeremyjones-rg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/provisioningServices/jeremyjonesDpsCanary\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABbec4w=\",\r\n \"name\": \"rkesslerDPSCors\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"rkesslerEastEUAP.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus2euap\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"rkesslerDPSCors.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global-canary.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne002D6C8A\",\r\n \"ipFilterRules\": [],\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"resourcegroup\": \"rkesslerTest\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/rkesslerTest/providers/Microsoft.Devices/provisioningServices/rkesslerDPSCors\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"etag\": \"AAAAABbeXu0=\",\r\n \"name\": \"JingDPSCanary\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [\r\n {\r\n \"name\": \"JingHub.azure-devices.net\",\r\n \"connectionString\": \"Sanitized\",\r\n \"location\": \"eastus\"\r\n }\r\n ],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"JingDPSCanary.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global-canary.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne008297D2\",\r\n \"enableDataResidency\": false\r\n },\r\n \"resourcegroup\": \"jingrg\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/jingrg/providers/Microsoft.Devices/provisioningServices/JingDPSCanary\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {},\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps849?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzODQ5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps3788?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzMzc4OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b9b6e0eb-871f-4b81-a156-872e0d88fca2" + "63276a9d-f19d-4ab8-baf4-613d1f94b6b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -148,6 +155,7 @@ "29" ] }, + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -159,13 +167,13 @@ "1199" ], "x-ms-request-id": [ - "21ff9abc-fdb2-41b0-875f-eacd3e61a335" + "46604c50-064d-4e39-b88c-b472da3bfdf8" ], "x-ms-correlation-request-id": [ - "21ff9abc-fdb2-41b0-875f-eacd3e61a335" + "46604c50-064d-4e39-b88c-b472da3bfdf8" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063851Z:21ff9abc-fdb2-41b0-875f-eacd3e61a335" + "WESTCENTRALUS:20230217T010444Z:46604c50-064d-4e39-b88c-b472da3bfdf8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,10 +182,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:38:51 GMT" + "Fri, 17 Feb 2023 01:04:43 GMT" ], "Content-Length": [ - "163" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,25 +194,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849\",\r\n \"name\": \"ps849\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788\",\r\n \"name\": \"ps3788\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd4a98a-cc1f-4483-93f8-22ef743054b2" + "3987ffa0-f3c0-49dc-ace9-9509a374e8f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -214,6 +221,7 @@ "127" ] }, + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -222,7 +230,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333/operationResults/b3NfaWRfYmZiZDFjMGEtOGEwNC00Y2IyLTk3ODEtOTYwZTJiNzNiYzQ5?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678/operationResults/aWQ9b3NfaWRfYzRmYzA1YjktMzU5OS00NzEyLTliOGQtM2ZkNWE5M2FlZWNjO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -231,13 +239,13 @@ "4999" ], "x-ms-request-id": [ - "77b8efe9-1b9f-40c0-940c-231fd15c2a76" + "92efd188-4506-4fa4-a9bf-9c110a8f4305" ], "x-ms-correlation-request-id": [ - "77b8efe9-1b9f-40c0-940c-231fd15c2a76" + "92efd188-4506-4fa4-a9bf-9c110a8f4305" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063853Z:77b8efe9-1b9f-40c0-940c-231fd15c2a76" + "WESTCENTRALUS:20230217T010447Z:92efd188-4506-4fa4-a9bf-9c110a8f4305" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,10 +254,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:38:52 GMT" + "Fri, 17 Feb 2023 01:04:46 GMT" ], "Content-Length": [ - "475" + "477" ], "Content-Type": [ "application/json; charset=utf-8" @@ -258,25 +266,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps5333\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps849\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2678\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Activating\",\r\n \"provisioningState\": \"Accepted\",\r\n \"allocationPolicy\": \"Hashed\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps3788\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"etag\": \"AAAAAAcX1eM=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d044f405-5162-40b6-94dc-72568862a86d" + "51fdaefe-d367-426f-959a-1b9af5bec518" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -286,6 +293,7 @@ "279" ] }, + "RequestBody": "{\r\n \"etag\": \"AAAAABbfC1I=\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -294,22 +302,22 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333/operationResults/b3NfaWRfZTViNzk2ZjUtMjAwNi00MDk1LTg5NDMtYTI3OWZkM2I3ODli?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678/operationResults/aWQ9b3NfaWRfZGZhMjQ0MzktYmEzZC00MDFkLWFiN2MtM2RlNjNjYTRjOTA0O3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4998" + "4999" ], "x-ms-request-id": [ - "525f5018-d743-41f1-aeec-4e77eb387343" + "a7fe44af-f078-4fbe-a4ea-6c87f757cf65" ], "x-ms-correlation-request-id": [ - "525f5018-d743-41f1-aeec-4e77eb387343" + "a7fe44af-f078-4fbe-a4ea-6c87f757cf65" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063925Z:525f5018-d743-41f1-aeec-4e77eb387343" + "WESTCENTRALUS:20230217T010521Z:a7fe44af-f078-4fbe-a4ea-6c87f757cf65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -318,10 +326,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:39:25 GMT" + "Fri, 17 Feb 2023 01:05:21 GMT" ], "Content-Length": [ - "517" + "519" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,25 +338,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX1eM=\",\r\n \"name\": \"ps5333\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps849\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfC1I=\",\r\n \"name\": \"ps2678\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Transitioning\",\r\n \"provisioningState\": \"Accepted\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"idScope\": null\r\n },\r\n \"resourcegroup\": \"ps3788\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333/operationResults/b3NfaWRfYmZiZDFjMGEtOGEwNC00Y2IyLTk3ODEtOTYwZTJiNzNiYzQ5?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzMvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZlltWmlaREZqTUdFdE9HRXdOQzAwWTJJeUxUazNPREV0T1RZd1pUSmlOek5pWXpRNT9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678/operationResults/aWQ9b3NfaWRfYzRmYzA1YjktMzU5OS00NzEyLTliOGQtM2ZkNWE5M2FlZWNjO3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4L29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmWXpSbVl6QTFZamt0TXpVNU9TMDBOekV5TFRsaU9HUXRNMlprTldFNU0yRmxaV05qTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd4a98a-cc1f-4483-93f8-22ef743054b2" + "3987ffa0-f3c0-49dc-ace9-9509a374e8f7" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -360,16 +368,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "057a27a9-1d68-413f-8ecb-3e5c844bcec8" + "2cabd882-d955-41f0-916b-470b21ecf5c8" ], "x-ms-correlation-request-id": [ - "057a27a9-1d68-413f-8ecb-3e5c844bcec8" + "2cabd882-d955-41f0-916b-470b21ecf5c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063923Z:057a27a9-1d68-413f-8ecb-3e5c844bcec8" + "WESTCENTRALUS:20230217T010517Z:2cabd882-d955-41f0-916b-470b21ecf5c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,7 +386,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:39:23 GMT" + "Fri, 17 Feb 2023 01:05:17 GMT" ], "Content-Length": [ "22" @@ -394,21 +402,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd4a98a-cc1f-4483-93f8-22ef743054b2" + "3987ffa0-f3c0-49dc-ace9-9509a374e8f7" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -420,16 +428,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "96c756c0-172b-4486-98ba-9e62e49490e1" + "3cf64eba-2933-4785-b30f-683e6ad69b65" ], "x-ms-correlation-request-id": [ - "96c756c0-172b-4486-98ba-9e62e49490e1" + "3cf64eba-2933-4785-b30f-683e6ad69b65" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063924Z:96c756c0-172b-4486-98ba-9e62e49490e1" + "WESTCENTRALUS:20230217T010517Z:3cf64eba-2933-4785-b30f-683e6ad69b65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,10 +446,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:39:23 GMT" + "Fri, 17 Feb 2023 01:05:17 GMT" ], "Content-Length": [ - "653" + "655" ], "Content-Type": [ "application/json; charset=utf-8" @@ -450,28 +458,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX1eM=\",\r\n \"name\": \"ps5333\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5333.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023622B\"\r\n },\r\n \"resourcegroup\": \"ps849\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfC1I=\",\r\n \"name\": \"ps2678\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps2678.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4E1\"\r\n },\r\n \"resourcegroup\": \"ps3788\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd4a98a-cc1f-4483-93f8-22ef743054b2" + "3987ffa0-f3c0-49dc-ace9-9509a374e8f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -483,16 +491,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-request-id": [ - "681d1f9a-c374-4231-9c13-3eb77452fc2d" + "70c85750-3a2d-43f1-bd57-0ec616646f9e" ], "x-ms-correlation-request-id": [ - "681d1f9a-c374-4231-9c13-3eb77452fc2d" + "70c85750-3a2d-43f1-bd57-0ec616646f9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063924Z:681d1f9a-c374-4231-9c13-3eb77452fc2d" + "WESTCENTRALUS:20230217T010518Z:70c85750-3a2d-43f1-bd57-0ec616646f9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -501,10 +509,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:39:23 GMT" + "Fri, 17 Feb 2023 01:05:17 GMT" ], "Content-Length": [ - "653" + "655" ], "Content-Type": [ "application/json; charset=utf-8" @@ -513,28 +521,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX1eM=\",\r\n \"name\": \"ps5333\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5333.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023622B\"\r\n },\r\n \"resourcegroup\": \"ps849\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfC1I=\",\r\n \"name\": \"ps2678\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps2678.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4E1\"\r\n },\r\n \"resourcegroup\": \"ps3788\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12bffddb-248f-4108-825c-ee9c2ca86c18" + "ccf4f18b-8682-461e-ae41-b299e774079a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -546,16 +554,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-request-id": [ - "d071fce8-8bbf-412b-849b-32ee15cb8812" + "fd3b7a2c-863e-43b6-90a2-2749745ef7e2" ], "x-ms-correlation-request-id": [ - "d071fce8-8bbf-412b-849b-32ee15cb8812" + "fd3b7a2c-863e-43b6-90a2-2749745ef7e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063924Z:d071fce8-8bbf-412b-849b-32ee15cb8812" + "WESTCENTRALUS:20230217T010518Z:fd3b7a2c-863e-43b6-90a2-2749745ef7e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,10 +572,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:39:24 GMT" + "Fri, 17 Feb 2023 01:05:18 GMT" ], "Content-Length": [ - "653" + "655" ], "Content-Type": [ "application/json; charset=utf-8" @@ -576,28 +584,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX1eM=\",\r\n \"name\": \"ps5333\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5333.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023622B\"\r\n },\r\n \"resourcegroup\": \"ps849\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfC1I=\",\r\n \"name\": \"ps2678\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps2678.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4E1\"\r\n },\r\n \"resourcegroup\": \"ps3788\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d044f405-5162-40b6-94dc-72568862a86d" + "51fdaefe-d367-426f-959a-1b9af5bec518" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -609,16 +617,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "b6dc6f97-8dcb-4cd3-98a3-325420413153" + "a433c721-0090-49bf-be6b-2b972366e73b" ], "x-ms-correlation-request-id": [ - "b6dc6f97-8dcb-4cd3-98a3-325420413153" + "a433c721-0090-49bf-be6b-2b972366e73b" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063924Z:b6dc6f97-8dcb-4cd3-98a3-325420413153" + "WESTCENTRALUS:20230217T010519Z:a433c721-0090-49bf-be6b-2b972366e73b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -627,10 +635,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:39:24 GMT" + "Fri, 17 Feb 2023 01:05:18 GMT" ], "Content-Length": [ - "653" + "655" ], "Content-Type": [ "application/json; charset=utf-8" @@ -639,28 +647,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX1eM=\",\r\n \"name\": \"ps5333\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5333.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023622B\"\r\n },\r\n \"resourcegroup\": \"ps849\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfC1I=\",\r\n \"name\": \"ps2678\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps2678.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4E1\"\r\n },\r\n \"resourcegroup\": \"ps3788\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d044f405-5162-40b6-94dc-72568862a86d" + "51fdaefe-d367-426f-959a-1b9af5bec518" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -672,16 +680,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-request-id": [ - "1e302baf-e8a0-41c8-8a84-1fde15d6a3b6" + "3baec10e-9204-4e89-94b4-02725e3e1ee1" ], "x-ms-correlation-request-id": [ - "1e302baf-e8a0-41c8-8a84-1fde15d6a3b6" + "3baec10e-9204-4e89-94b4-02725e3e1ee1" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063924Z:1e302baf-e8a0-41c8-8a84-1fde15d6a3b6" + "WESTCENTRALUS:20230217T010519Z:3baec10e-9204-4e89-94b4-02725e3e1ee1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -690,10 +698,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:39:24 GMT" + "Fri, 17 Feb 2023 01:05:19 GMT" ], "Content-Length": [ - "653" + "655" ], "Content-Type": [ "application/json; charset=utf-8" @@ -702,25 +710,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX1eM=\",\r\n \"name\": \"ps5333\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps5333.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023622B\"\r\n },\r\n \"resourcegroup\": \"ps849\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfC1I=\",\r\n \"name\": \"ps2678\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"Hashed\",\r\n \"serviceOperationsHostName\": \"ps2678.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4E1\"\r\n },\r\n \"resourcegroup\": \"ps3788\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d044f405-5162-40b6-94dc-72568862a86d" + "51fdaefe-d367-426f-959a-1b9af5bec518" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -732,16 +740,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-request-id": [ - "92fa095c-ccdc-4580-a41e-6c641fdc8de1" + "fa9a0ec5-75b5-4986-88c7-80ee0b41d351" ], "x-ms-correlation-request-id": [ - "92fa095c-ccdc-4580-a41e-6c641fdc8de1" + "fa9a0ec5-75b5-4986-88c7-80ee0b41d351" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063955Z:92fa095c-ccdc-4580-a41e-6c641fdc8de1" + "WESTCENTRALUS:20230217T010551Z:fa9a0ec5-75b5-4986-88c7-80ee0b41d351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -750,10 +758,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:39:55 GMT" + "Fri, 17 Feb 2023 01:05:51 GMT" ], "Content-Length": [ - "657" + "659" ], "Content-Type": [ "application/json; charset=utf-8" @@ -762,28 +770,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX1iE=\",\r\n \"name\": \"ps5333\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps5333.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023622B\"\r\n },\r\n \"resourcegroup\": \"ps849\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfC84=\",\r\n \"name\": \"ps2678\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps2678.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4E1\"\r\n },\r\n \"resourcegroup\": \"ps3788\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0ab0d9c-191b-484f-863c-d97ccee7b351" + "30e0799c-7b6c-4ccf-b3e6-9fa0ab174542" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -795,16 +803,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-request-id": [ - "2aca67db-202e-4bfa-b52c-1678b783a750" + "985b97e1-ca62-4c1c-bd81-6054ee01c7c2" ], "x-ms-correlation-request-id": [ - "2aca67db-202e-4bfa-b52c-1678b783a750" + "985b97e1-ca62-4c1c-bd81-6054ee01c7c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063956Z:2aca67db-202e-4bfa-b52c-1678b783a750" + "WESTUS:20230217T010551Z:985b97e1-ca62-4c1c-bd81-6054ee01c7c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -813,10 +821,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:39:55 GMT" + "Fri, 17 Feb 2023 01:05:51 GMT" ], "Content-Length": [ - "657" + "659" ], "Content-Type": [ "application/json; charset=utf-8" @@ -825,25 +833,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"AAAAAAcX1iE=\",\r\n \"name\": \"ps5333\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps5333.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023622B\"\r\n },\r\n \"resourcegroup\": \"ps849\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfC84=\",\r\n \"name\": \"ps2678\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps2678.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4E1\"\r\n },\r\n \"resourcegroup\": \"ps3788\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333/operationResults/b3NfaWRfZTViNzk2ZjUtMjAwNi00MDk1LTg5NDMtYTI3OWZkM2I3ODli?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzMvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZlpUVmlOemsyWmpVdE1qQXdOaTAwTURrMUxUZzVORE10WVRJM09XWmtNMkkzT0RsaT9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678/operationResults/aWQ9b3NfaWRfZGZhMjQ0MzktYmEzZC00MDFkLWFiN2MtM2RlNjNjYTRjOTA0O3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4L29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmWkdaaE1qUTBNemt0WW1FelpDMDBNREZrTFdGaU4yTXRNMlJsTmpOallUUmpPVEEwTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d044f405-5162-40b6-94dc-72568862a86d" + "51fdaefe-d367-426f-959a-1b9af5bec518" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -855,16 +863,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-request-id": [ - "dfa4f27b-4c7e-4eb4-9004-278e89b9e276" + "85eec988-abc3-442c-9b23-7bdb8e1ba8ff" ], "x-ms-correlation-request-id": [ - "dfa4f27b-4c7e-4eb4-9004-278e89b9e276" + "85eec988-abc3-442c-9b23-7bdb8e1ba8ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063955Z:dfa4f27b-4c7e-4eb4-9004-278e89b9e276" + "WESTCENTRALUS:20230217T010551Z:85eec988-abc3-442c-9b23-7bdb8e1ba8ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -873,7 +881,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:39:55 GMT" + "Fri, 17 Feb 2023 01:05:51 GMT" ], "Content-Length": [ "22" @@ -889,21 +897,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e0ab0d9c-191b-484f-863c-d97ccee7b351" + "30e0799c-7b6c-4ccf-b3e6-9fa0ab174542" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -913,6 +920,7 @@ "67" ] }, + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -924,16 +932,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4997" + "4999" ], "x-ms-request-id": [ - "8fe4197e-59a9-4811-b85e-229a43ca350c" + "a1316884-bdb4-4501-bad6-ba58ee9521b6" ], "x-ms-correlation-request-id": [ - "8fe4197e-59a9-4811-b85e-229a43ca350c" + "a1316884-bdb4-4501-bad6-ba58ee9521b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063956Z:8fe4197e-59a9-4811-b85e-229a43ca350c" + "WESTUS:20230217T010552Z:a1316884-bdb4-4501-bad6-ba58ee9521b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -942,10 +950,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:39:56 GMT" + "Fri, 17 Feb 2023 01:05:51 GMT" ], "Content-Length": [ - "661" + "675" ], "Content-Type": [ "application/json; charset=utf-8" @@ -954,25 +962,24 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"\",\r\n \"name\": \"ps5333\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps5333.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023622B\"\r\n },\r\n \"resourcegroup\": \"ps849\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfC84=\",\r\n \"name\": \"ps2678\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps2678.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4E1\"\r\n },\r\n \"resourcegroup\": \"ps3788\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7a1a4f55-6561-4ef0-9a90-162ee3167c76" + "219c8b74-829c-4a47-9ee5-a18f633c5ca6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ], "Content-Type": [ @@ -982,6 +989,7 @@ "44" ] }, + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -993,16 +1001,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "4996" + "4999" ], "x-ms-request-id": [ - "54feb1e4-eaaa-48d8-9b3e-53b6172b6c42" + "273e6b29-8088-433f-909d-5868d5957c09" ], "x-ms-correlation-request-id": [ - "54feb1e4-eaaa-48d8-9b3e-53b6172b6c42" + "273e6b29-8088-433f-909d-5868d5957c09" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063957Z:54feb1e4-eaaa-48d8-9b3e-53b6172b6c42" + "WESTCENTRALUS:20230217T010554Z:273e6b29-8088-433f-909d-5868d5957c09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,10 +1019,10 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:39:57 GMT" + "Fri, 17 Feb 2023 01:05:54 GMT" ], "Content-Length": [ - "645" + "659" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1023,28 +1031,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"etag\": \"\",\r\n \"name\": \"ps5333\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps5333.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0023622B\"\r\n },\r\n \"resourcegroup\": \"ps849\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"etag\": \"AAAAABbfDHA=\",\r\n \"name\": \"ps2678\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"iotHubs\": [],\r\n \"allocationPolicy\": \"GeoLatency\",\r\n \"serviceOperationsHostName\": \"ps2678.azure-devices-provisioning.net\",\r\n \"deviceProvisioningHostName\": \"global.azure-devices-provisioning.net\",\r\n \"idScope\": \"0ne0097D4E1\"\r\n },\r\n \"resourcegroup\": \"ps3788\",\r\n \"type\": \"Microsoft.Devices/provisioningServices\",\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678\",\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"tags\": {\r\n \"key1\": \"value1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzM/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4P2FwaS12ZXJzaW9uPTIwMTctMTEtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c57c622-9c9a-408f-b75d-78d662703ef8" + "2e8f99c4-27a0-457d-b596-5afe8b4d0308" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1053,28 +1061,28 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333/operationResults/b3NfaWRfOWVlMGI1N2QtMDQ0MS00YWUzLWFkNDMtOTliNTYyMGVhYmVm?api-version=2017-11-15" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678/operationResults/aWQ9b3NfaWRfNWMyODY0NTktOTMxMi00ZGU5LTg3NjctOTRiYzg5OTUyNzU0O3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333/operationResults/b3NfaWRfOWVlMGI1N2QtMDQ0MS00YWUzLWFkNDMtOTliNTYyMGVhYmVm?api-version=2017-11-15&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678/operationResults/aWQ9b3NfaWRfNWMyODY0NTktOTMxMi00ZGU5LTg3NjctOTRiYzg5OTUyNzU0O3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "e23828b9-ba67-464b-a227-0ce5ac2a4848" + "a517cc5c-4e5a-4d0c-b06f-4e85663da010" ], "x-ms-correlation-request-id": [ - "e23828b9-ba67-464b-a227-0ce5ac2a4848" + "a517cc5c-4e5a-4d0c-b06f-4e85663da010" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T063958Z:e23828b9-ba67-464b-a227-0ce5ac2a4848" + "WESTCENTRALUS:20230217T010555Z:a517cc5c-4e5a-4d0c-b06f-4e85663da010" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1083,7 +1091,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:39:57 GMT" + "Fri, 17 Feb 2023 01:05:54 GMT" ], "Content-Length": [ "4" @@ -1099,21 +1107,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333/operationResults/b3NfaWRfOWVlMGI1N2QtMDQ0MS00YWUzLWFkNDMtOTliNTYyMGVhYmVm?api-version=2017-11-15&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzMvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZk9XVmxNR0kxTjJRdE1EUTBNUzAwWVdVekxXRmtORE10T1RsaU5UWXlNR1ZoWW1WbT9hcGktdmVyc2lvbj0yMDE3LTExLTE1JmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678/operationResults/aWQ9b3NfaWRfNWMyODY0NTktOTMxMi00ZGU5LTg3NjctOTRiYzg5OTUyNzU0O3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4L29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmTldNeU9EWTBOVGt0T1RNeE1pMDBaR1U1TFRnM05qY3RPVFJpWXpnNU9UVXlOelUwTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNSZhc3luY2luZm8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c57c622-9c9a-408f-b75d-78d662703ef8" + "2e8f99c4-27a0-457d-b596-5afe8b4d0308" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1128,13 +1136,13 @@ "11989" ], "x-ms-request-id": [ - "335f2571-7bf9-4ce4-8079-895ac0387f08" + "c3b3b9ec-2329-4684-91a0-29e6c320c293" ], "x-ms-correlation-request-id": [ - "335f2571-7bf9-4ce4-8079-895ac0387f08" + "c3b3b9ec-2329-4684-91a0-29e6c320c293" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064013Z:335f2571-7bf9-4ce4-8079-895ac0387f08" + "WESTCENTRALUS:20230217T010610Z:c3b3b9ec-2329-4684-91a0-29e6c320c293" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1143,7 +1151,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:40:12 GMT" + "Fri, 17 Feb 2023 01:06:09 GMT" ], "Content-Length": [ "22" @@ -1159,21 +1167,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333/operationResults/b3NfaWRfOWVlMGI1N2QtMDQ0MS00YWUzLWFkNDMtOTliNTYyMGVhYmVm?api-version=2017-11-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzODQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9wcm92aXNpb25pbmdTZXJ2aWNlcy9wczUzMzMvb3BlcmF0aW9uUmVzdWx0cy9iM05mYVdSZk9XVmxNR0kxTjJRdE1EUTBNUzAwWVdVekxXRmtORE10T1RsaU5UWXlNR1ZoWW1WbT9hcGktdmVyc2lvbj0yMDE3LTExLTE1", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678/operationResults/aWQ9b3NfaWRfNWMyODY0NTktOTMxMi00ZGU5LTg3NjctOTRiYzg5OTUyNzU0O3JlZ2lvbj13ZXN0dXM=?api-version=2017-11-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMzc4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvcHJvdmlzaW9uaW5nU2VydmljZXMvcHMyNjc4L29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV1JmTldNeU9EWTBOVGt0T1RNeE1pMDBaR1U1TFRnM05qY3RPVFJpWXpnNU9UVXlOelUwTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAxNy0xMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c57c622-9c9a-408f-b75d-78d662703ef8" + "2e8f99c4-27a0-457d-b596-5afe8b4d0308" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.25302", "Microsoft.Azure.Management.DeviceProvisioningServices.IotDpsClient/0.10.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1182,7 +1190,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps849/providers/Microsoft.Devices/provisioningServices/ps5333/operationResults/b3NfaWRfOWVlMGI1N2QtMDQ0MS00YWUzLWFkNDMtOTliNTYyMGVhYmVm/operationResults/b3NfaWRfOWVlMGI1N2QtMDQ0MS00YWUzLWFkNDMtOTliNTYyMGVhYmVm?api-version=2017-11-15" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps3788/providers/Microsoft.Devices/provisioningServices/ps2678/operationResults/aWQ9b3NfaWRfNWMyODY0NTktOTMxMi00ZGU5LTg3NjctOTRiYzg5OTUyNzU0O3JlZ2lvbj13ZXN0dXM%3D/operationResults/b3NfaWRfNWMyODY0NTktOTMxMi00ZGU5LTg3NjctOTRiYzg5OTUyNzU0?api-version=2017-11-15" ], "Retry-After": [ "15" @@ -1194,13 +1202,13 @@ "11988" ], "x-ms-request-id": [ - "34dcf66f-792b-4784-b894-31a815365488" + "988e9472-c3da-4ce3-bffa-7c90fcd44622" ], "x-ms-correlation-request-id": [ - "34dcf66f-792b-4784-b894-31a815365488" + "988e9472-c3da-4ce3-bffa-7c90fcd44622" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064013Z:34dcf66f-792b-4784-b894-31a815365488" + "WESTCENTRALUS:20230217T010610Z:988e9472-c3da-4ce3-bffa-7c90fcd44622" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1209,7 +1217,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:40:12 GMT" + "Fri, 17 Feb 2023 01:06:10 GMT" ], "Expires": [ "-1" @@ -1222,24 +1230,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps849?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzODQ5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps3788?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzMzc4OD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87f5be38-821c-496b-82e9-ac14a3a6b60f" + "0191838b-8c32-47bb-b16b-85dd3392d8b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1248,7 +1256,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3ODgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1257,13 +1265,13 @@ "14999" ], "x-ms-request-id": [ - "825ace8a-565b-4688-91e8-d29e7bd6f696" + "4a8974a0-33ba-4af6-9514-858433124b37" ], "x-ms-correlation-request-id": [ - "825ace8a-565b-4688-91e8-d29e7bd6f696" + "4a8974a0-33ba-4af6-9514-858433124b37" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064014Z:825ace8a-565b-4688-91e8-d29e7bd6f696" + "WESTCENTRALUS:20230217T010612Z:4a8974a0-33ba-4af6-9514-858433124b37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1272,7 +1280,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:40:13 GMT" + "Fri, 17 Feb 2023 01:06:11 GMT" ], "Expires": [ "-1" @@ -1285,75 +1293,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME9TMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3ODgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM09EZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "ac598746-bb90-476d-974f-6026ef2c7da0" - ], - "x-ms-correlation-request-id": [ - "ac598746-bb90-476d-974f-6026ef2c7da0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T064029Z:ac598746-bb90-476d-974f-6026ef2c7da0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:40:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME9TMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1361,23 +1312,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "03f343cd-6563-4473-8ad6-6be0dfb36811" + "c2e5a2df-edf1-4f7a-8414-ea5607aa99c5" ], "x-ms-correlation-request-id": [ - "03f343cd-6563-4473-8ad6-6be0dfb36811" + "c2e5a2df-edf1-4f7a-8414-ea5607aa99c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064044Z:03f343cd-6563-4473-8ad6-6be0dfb36811" + "WESTCENTRALUS:20230217T010627Z:c2e5a2df-edf1-4f7a-8414-ea5607aa99c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1386,58 +1331,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:40:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME9TMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "1e85ea3c-ae96-42ed-a12c-d9c7916d37f8" - ], - "x-ms-correlation-request-id": [ - "1e85ea3c-ae96-42ed-a12c-d9c7916d37f8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20210224T064059Z:1e85ea3c-ae96-42ed-a12c-d9c7916d37f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 24 Feb 2021 06:40:59 GMT" + "Fri, 17 Feb 2023 01:06:26 GMT" ], "Expires": [ "-1" @@ -1450,18 +1344,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME9TMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM3ODgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNM09EZ3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1470,16 +1364,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-request-id": [ - "b466dab9-bfae-4313-868a-16129b693892" + "d1874cd0-2685-4e55-893e-6f0a8b3476aa" ], "x-ms-correlation-request-id": [ - "b466dab9-bfae-4313-868a-16129b693892" + "d1874cd0-2685-4e55-893e-6f0a8b3476aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20210224T064059Z:b466dab9-bfae-4313-868a-16129b693892" + "WESTCENTRALUS:20230217T010627Z:d1874cd0-2685-4e55-893e-6f0a8b3476aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,7 +1382,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Feb 2021 06:40:59 GMT" + "Fri, 17 Feb 2023 01:06:26 GMT" ], "Expires": [ "-1" @@ -1503,8 +1397,8 @@ ], "Names": { "Test-AzureIotDpsLifeCycle": [ - "ps5333", - "ps849" + "ps2678", + "ps3788" ] }, "Variables": { diff --git a/src/IotHub/IotHub.Test/IotHub.Test.csproj b/src/IotHub/IotHub.Test/IotHub.Test.csproj index d8a78f242aaf..f81ef3a30a0d 100644 --- a/src/IotHub/IotHub.Test/IotHub.Test.csproj +++ b/src/IotHub/IotHub.Test/IotHub.Test.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPConfigurationTests/TestAzureIotHubConfigurationLifecycle.json b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPConfigurationTests/TestAzureIotHubConfigurationLifecycle.json index 00afc3a7bf4e..405c09152ff5 100644 --- a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPConfigurationTests/TestAzureIotHubConfigurationLifecycle.json +++ b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPConfigurationTests/TestAzureIotHubConfigurationLifecycle.json @@ -4,21 +4,21 @@ "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d38f52f1-9eea-4e35-9f77-272233b898cf" + "bddbfb3b-1477-4a5d-92e9-f2e83580ab18" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.47" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "91d1aa4f-bd3c-4a36-917a-1f32e1a512c1" + "963274f3-0322-460a-be4c-59429ea4a207" ], "x-ms-correlation-request-id": [ - "91d1aa4f-bd3c-4a36-917a-1f32e1a512c1" + "963274f3-0322-460a-be4c-59429ea4a207" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163501Z:91d1aa4f-bd3c-4a36-917a-1f32e1a512c1" + "WESTCENTRALUS:20230216T185032Z:963274f3-0322-460a-be4c-59429ea4a207" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:35:01 GMT" + "Thu, 16 Feb 2023 18:50:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,28 @@ "-1" ], "Content-Length": [ - "8553" + "9626" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"roleDefinitionId\": \"d04fc6c0-fc10-4ab8-b7de-c979247c3b65\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\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\": \"IotHubs/failover\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 3\",\r\n \"Germany West Central\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Germany North\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-02-01-preview\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-12-01-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 ],\r\n \"apiVersions\": [\r\n \"2021-02-01-preview\",\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/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"roleDefinitionId\": \"d04fc6c0-fc10-4ab8-b7de-c979247c3b65\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"provisioningServiceOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-09-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations/provisioningServiceOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway EAST\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\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\": \"IotHubs/failover\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"Australia Central\"\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps1138?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzMTEzOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps5130?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzNTEzMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ae7ed8ba-5989-4aeb-ad1c-41e707978928" + "e078c996-051d-4954-8ce9-09240ce82cc7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.47" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -85,6 +84,7 @@ "29" ] }, + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "95d68d9a-d6c9-4755-a677-e1169a230b62" + "0ed9b8ef-aad5-46c2-9571-3d95627909e4" ], "x-ms-correlation-request-id": [ - "95d68d9a-d6c9-4755-a677-e1169a230b62" + "0ed9b8ef-aad5-46c2-9571-3d95627909e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163503Z:95d68d9a-d6c9-4755-a677-e1169a230b62" + "WESTCENTRALUS:20230216T185033Z:0ed9b8ef-aad5-46c2-9571-3d95627909e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:35:02 GMT" + "Thu, 16 Feb 2023 18:50:33 GMT" ], "Content-Length": [ "165" @@ -123,26 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138\",\r\n \"name\": \"ps1138\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130\",\r\n \"name\": \"ps5130\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "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": [ - "ee34c055-804d-43fa-9057-8bf84fb5f3b4" + "f082576d-52bb-4766-abc3-7eb06bac082b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -151,6 +150,7 @@ "85" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfODUwYzY4ZDEtNTMzMi00MWFlLTg1OTEtMjRhOTM1MWFjZTM5O3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYTQ3ZWFhMGMtN2FhMy00ZmU4LWJhMjQtYjBjYjdjYzAwOTNmO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "ed50af62-04de-4e54-8baa-9953fcbe0a11" + "48843682-93d8-47fc-918f-7bd50b42f796" ], "x-ms-correlation-request-id": [ - "ed50af62-04de-4e54-8baa-9953fcbe0a11" + "48843682-93d8-47fc-918f-7bd50b42f796" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163508Z:ed50af62-04de-4e54-8baa-9953fcbe0a11" + "WESTCENTRALUS:20230216T185038Z:48843682-93d8-47fc-918f-7bd50b42f796" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,10 +183,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:35:07 GMT" + "Thu, 16 Feb 2023 18:50:38 GMT" ], "Content-Length": [ - "619" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,85 +195,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\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/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfODUwYzY4ZDEtNTMzMi00MWFlLTg1OTEtMjRhOTM1MWFjZTM5O3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmT0RVd1l6WTRaREV0TlRNek1pMDBNV0ZsTFRnMU9URXRNalJoT1RNMU1XRmpaVE01TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMC0wMy0wMSZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYTQ3ZWFhMGMtN2FhMy00ZmU4LWJhMjQtYjBjYjdjYzAwOTNmO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWVRRM1pXRmhNR010TjJGaE15MDBabVU0TFdKaE1qUXRZakJqWWpkall6QXdPVE5tTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee34c055-804d-43fa-9057-8bf84fb5f3b4" + "f082576d-52bb-4766-abc3-7eb06bac082b" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "112798d6-ac21-423a-b389-68dfa93941c0" - ], - "x-ms-correlation-request-id": [ - "112798d6-ac21-423a-b389-68dfa93941c0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20211018T163538Z:112798d6-ac21-423a-b389-68dfa93941c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 18 Oct 2021 16:35:37 GMT" - ], - "Content-Length": [ - "20" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfODUwYzY4ZDEtNTMzMi00MWFlLTg1OTEtMjRhOTM1MWFjZTM5O3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmT0RVd1l6WTRaREV0TlRNek1pMDBNV0ZsTFRnMU9URXRNalJoT1RNMU1XRmpaVE01TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMC0wMy0wMSZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ee34c055-804d-43fa-9057-8bf84fb5f3b4" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -285,16 +225,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "ccaf0538-ce13-4b68-a96d-0d96a26a1e4a" + "47414544-d213-4909-8763-3e076534287b" ], "x-ms-correlation-request-id": [ - "ccaf0538-ce13-4b68-a96d-0d96a26a1e4a" + "47414544-d213-4909-8763-3e076534287b" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163608Z:ccaf0538-ce13-4b68-a96d-0d96a26a1e4a" + "WESTCENTRALUS:20230216T185108Z:47414544-d213-4909-8763-3e076534287b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +243,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:36:08 GMT" + "Thu, 16 Feb 2023 18:51:08 GMT" ], "Content-Length": [ "20" @@ -319,21 +259,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfODUwYzY4ZDEtNTMzMi00MWFlLTg1OTEtMjRhOTM1MWFjZTM5O3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmT0RVd1l6WTRaREV0TlRNek1pMDBNV0ZsTFRnMU9URXRNalJoT1RNMU1XRmpaVE01TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMC0wMy0wMSZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYTQ3ZWFhMGMtN2FhMy00ZmU4LWJhMjQtYjBjYjdjYzAwOTNmO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWVRRM1pXRmhNR010TjJGaE15MDBabVU0TFdKaE1qUXRZakJqWWpkall6QXdPVE5tTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee34c055-804d-43fa-9057-8bf84fb5f3b4" + "f082576d-52bb-4766-abc3-7eb06bac082b" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -345,16 +285,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "90ef1641-1962-401d-9773-1cdc7b4f469b" + "34fcb6cd-c450-4207-a51b-58136b48628c" ], "x-ms-correlation-request-id": [ - "90ef1641-1962-401d-9773-1cdc7b4f469b" + "34fcb6cd-c450-4207-a51b-58136b48628c" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163638Z:90ef1641-1962-401d-9773-1cdc7b4f469b" + "WESTCENTRALUS:20230216T185138Z:34fcb6cd-c450-4207-a51b-58136b48628c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,7 +303,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:36:37 GMT" + "Thu, 16 Feb 2023 18:51:37 GMT" ], "Content-Length": [ "20" @@ -379,21 +319,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfODUwYzY4ZDEtNTMzMi00MWFlLTg1OTEtMjRhOTM1MWFjZTM5O3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmT0RVd1l6WTRaREV0TlRNek1pMDBNV0ZsTFRnMU9URXRNalJoT1RNMU1XRmpaVE01TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMC0wMy0wMSZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYTQ3ZWFhMGMtN2FhMy00ZmU4LWJhMjQtYjBjYjdjYzAwOTNmO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWVRRM1pXRmhNR010TjJGaE15MDBabVU0TFdKaE1qUXRZakJqWWpkall6QXdPVE5tTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee34c055-804d-43fa-9057-8bf84fb5f3b4" + "f082576d-52bb-4766-abc3-7eb06bac082b" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -405,16 +345,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "f97fbc3f-a3f2-423b-9792-5d36e6852ac2" + "7a551758-a975-4407-b0d3-482c00f831b7" ], "x-ms-correlation-request-id": [ - "f97fbc3f-a3f2-423b-9792-5d36e6852ac2" + "7a551758-a975-4407-b0d3-482c00f831b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163708Z:f97fbc3f-a3f2-423b-9792-5d36e6852ac2" + "WESTCENTRALUS:20230216T185208Z:7a551758-a975-4407-b0d3-482c00f831b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -423,7 +363,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:08 GMT" + "Thu, 16 Feb 2023 18:52:07 GMT" ], "Content-Length": [ "20" @@ -439,21 +379,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfODUwYzY4ZDEtNTMzMi00MWFlLTg1OTEtMjRhOTM1MWFjZTM5O3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmT0RVd1l6WTRaREV0TlRNek1pMDBNV0ZsTFRnMU9URXRNalJoT1RNMU1XRmpaVE01TzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMC0wMy0wMSZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYTQ3ZWFhMGMtN2FhMy00ZmU4LWJhMjQtYjBjYjdjYzAwOTNmO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWVRRM1pXRmhNR010TjJGaE15MDBabVU0TFdKaE1qUXRZakJqWWpkall6QXdPVE5tTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee34c055-804d-43fa-9057-8bf84fb5f3b4" + "f082576d-52bb-4766-abc3-7eb06bac082b" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -465,16 +405,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "cbdf52af-091e-484f-9557-b4979a153c35" + "b32477fa-d9b3-4bb7-8d43-cd2f7efbf6e4" ], "x-ms-correlation-request-id": [ - "cbdf52af-091e-484f-9557-b4979a153c35" + "b32477fa-d9b3-4bb7-8d43-cd2f7efbf6e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163738Z:cbdf52af-091e-484f-9557-b4979a153c35" + "WESTCENTRALUS:20230216T185238Z:b32477fa-d9b3-4bb7-8d43-cd2f7efbf6e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,7 +423,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:38 GMT" + "Thu, 16 Feb 2023 18:52:37 GMT" ], "Content-Length": [ "22" @@ -499,21 +439,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee34c055-804d-43fa-9057-8bf84fb5f3b4" + "f082576d-52bb-4766-abc3-7eb06bac082b" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -525,16 +465,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "9de716c2-36dc-4ec8-9dc0-4bd50d07a83c" + "e57f01ad-ebfa-42f3-8212-e73dfe5af21d" ], "x-ms-correlation-request-id": [ - "9de716c2-36dc-4ec8-9dc0-4bd50d07a83c" + "e57f01ad-ebfa-42f3-8212-e73dfe5af21d" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163739Z:9de716c2-36dc-4ec8-9dc0-4bd50d07a83c" + "WESTCENTRALUS:20230216T185239Z:e57f01ad-ebfa-42f3-8212-e73dfe5af21d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -543,10 +483,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:38 GMT" + "Thu, 16 Feb 2023 18:52:39 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -555,28 +495,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee34c055-804d-43fa-9057-8bf84fb5f3b4" + "f082576d-52bb-4766-abc3-7eb06bac082b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -588,16 +528,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "09d3efdc-9500-47c8-bda2-c40b476ca4e1" + "51e2f5bb-09b5-4338-83b3-4b5a28d1379a" ], "x-ms-correlation-request-id": [ - "09d3efdc-9500-47c8-bda2-c40b476ca4e1" + "51e2f5bb-09b5-4338-83b3-4b5a28d1379a" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163739Z:09d3efdc-9500-47c8-bda2-c40b476ca4e1" + "WESTCENTRALUS:20230216T185240Z:51e2f5bb-09b5-4338-83b3-4b5a28d1379a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -606,10 +546,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:39 GMT" + "Thu, 16 Feb 2023 18:52:40 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -618,28 +558,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dda0a337-a8e5-42b6-b3fd-2ef6e28068fd" + "57daaf28-8aaf-489f-8e78-cc64a5837848" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -651,16 +591,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-request-id": [ - "91379aa2-689f-4539-92e6-d1a5d618e762" + "cb02c173-5e8c-4fd6-852b-7664ca43cc49" ], "x-ms-correlation-request-id": [ - "91379aa2-689f-4539-92e6-d1a5d618e762" + "cb02c173-5e8c-4fd6-852b-7664ca43cc49" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163740Z:91379aa2-689f-4539-92e6-d1a5d618e762" + "WESTCENTRALUS:20230216T185241Z:cb02c173-5e8c-4fd6-852b-7664ca43cc49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,10 +609,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:40 GMT" + "Thu, 16 Feb 2023 18:52:41 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -681,28 +621,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aecdb949-3ae6-4910-bef8-85fe5f821884" + "5f590151-84f5-43f7-832b-633897a0cda4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -714,16 +654,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-request-id": [ - "92b17765-d819-4bd1-83aa-2aefc15dd1f7" + "bddc34a6-bb2a-4029-aac9-d85138a7bb12" ], "x-ms-correlation-request-id": [ - "92b17765-d819-4bd1-83aa-2aefc15dd1f7" + "bddc34a6-bb2a-4029-aac9-d85138a7bb12" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163741Z:92b17765-d819-4bd1-83aa-2aefc15dd1f7" + "WESTCENTRALUS:20230216T185243Z:bddc34a6-bb2a-4029-aac9-d85138a7bb12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,10 +672,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:41 GMT" + "Thu, 16 Feb 2023 18:52:43 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,28 +684,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a568b816-efbe-4bae-8f60-083885f42f26" + "9b000b9c-92b9-4b61-a511-117f1aedcca9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -777,16 +717,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-request-id": [ - "5d2ff240-6ff9-4710-bcf5-1b1af8fae5d7" + "9901f1c3-d9ce-475c-a905-6f9c6263ad28" ], "x-ms-correlation-request-id": [ - "5d2ff240-6ff9-4710-bcf5-1b1af8fae5d7" + "9901f1c3-d9ce-475c-a905-6f9c6263ad28" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163742Z:5d2ff240-6ff9-4710-bcf5-1b1af8fae5d7" + "WESTCENTRALUS:20230216T185245Z:9901f1c3-d9ce-475c-a905-6f9c6263ad28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -795,10 +735,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:42 GMT" + "Thu, 16 Feb 2023 18:52:44 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -807,28 +747,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3e599a8-50dc-4ad5-bc62-a8b7881a586d" + "62215ef5-51e7-4d82-9921-6e4f149905e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -840,16 +780,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-request-id": [ - "723f34ea-7d35-4fea-a8dc-ead7f3f88cb3" + "cf99aed9-671e-4f70-b214-59032f4b375c" ], "x-ms-correlation-request-id": [ - "723f34ea-7d35-4fea-a8dc-ead7f3f88cb3" + "cf99aed9-671e-4f70-b214-59032f4b375c" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163743Z:723f34ea-7d35-4fea-a8dc-ead7f3f88cb3" + "WESTCENTRALUS:20230216T185247Z:cf99aed9-671e-4f70-b214-59032f4b375c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,10 +798,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:43 GMT" + "Thu, 16 Feb 2023 18:52:46 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -870,28 +810,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61494b7f-b021-454e-b30d-043de77f9ceb" + "99111bf0-bc18-489f-8ea5-77667dcc2826" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -903,16 +843,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "b19611b1-3fea-4af2-aea4-c6f272a11eb4" + "a9a8ab3b-617e-4b37-835c-9efdd9c217c8" ], "x-ms-correlation-request-id": [ - "b19611b1-3fea-4af2-aea4-c6f272a11eb4" + "a9a8ab3b-617e-4b37-835c-9efdd9c217c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163744Z:b19611b1-3fea-4af2-aea4-c6f272a11eb4" + "WESTCENTRALUS:20230216T185249Z:a9a8ab3b-617e-4b37-835c-9efdd9c217c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -921,10 +861,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:44 GMT" + "Thu, 16 Feb 2023 18:52:49 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -933,28 +873,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d67823fd-97b2-4269-90a9-fe494ed88ac2" + "0c3c52f8-029a-4b30-aafb-df5f45a509fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -966,16 +906,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-request-id": [ - "0141ed5b-1c93-413d-a012-aeba0345a7fb" + "5a013d80-b9f9-4b19-8b90-d29cc98d2759" ], "x-ms-correlation-request-id": [ - "0141ed5b-1c93-413d-a012-aeba0345a7fb" + "5a013d80-b9f9-4b19-8b90-d29cc98d2759" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163745Z:0141ed5b-1c93-413d-a012-aeba0345a7fb" + "WESTCENTRALUS:20230216T185251Z:5a013d80-b9f9-4b19-8b90-d29cc98d2759" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,10 +924,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:45 GMT" + "Thu, 16 Feb 2023 18:52:50 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -996,28 +936,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c3625b6-0e23-4b1f-94dd-4555b02f8c7c" + "3edaca63-62d6-47cb-8a58-96822fee557a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1029,16 +969,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-request-id": [ - "f215f1ba-8c9f-4c5a-8e7e-b59f537df54c" + "8efaf82a-3c62-4be6-bea5-95222c4e1a03" ], "x-ms-correlation-request-id": [ - "f215f1ba-8c9f-4c5a-8e7e-b59f537df54c" + "8efaf82a-3c62-4be6-bea5-95222c4e1a03" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163746Z:f215f1ba-8c9f-4c5a-8e7e-b59f537df54c" + "WESTCENTRALUS:20230216T185252Z:8efaf82a-3c62-4be6-bea5-95222c4e1a03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1047,10 +987,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:46 GMT" + "Thu, 16 Feb 2023 18:52:51 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1059,28 +999,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a02d05b-f051-41fa-b3d9-0bdb27928b60" + "d72671ef-5678-4ff6-b1fa-2dad02452bdd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1092,16 +1032,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11998" ], "x-ms-request-id": [ - "23287953-e054-488e-844e-5e1856d5045f" + "9baebe5b-c04c-4b90-9006-4aaf3c39fd51" ], "x-ms-correlation-request-id": [ - "23287953-e054-488e-844e-5e1856d5045f" + "9baebe5b-c04c-4b90-9006-4aaf3c39fd51" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163747Z:23287953-e054-488e-844e-5e1856d5045f" + "WESTCENTRALUS:20230216T185254Z:9baebe5b-c04c-4b90-9006-4aaf3c39fd51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,10 +1050,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:47 GMT" + "Thu, 16 Feb 2023 18:52:53 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1122,28 +1062,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71692c98-8166-4b0d-80cb-553228223f77" + "9e85a79a-111e-4f52-881a-394692bd3e3c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1155,16 +1095,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11999" ], "x-ms-request-id": [ - "11d81078-a34e-4e33-8155-9841523e99ea" + "aea49338-a287-4409-9b0f-56c588a2c4f0" ], "x-ms-correlation-request-id": [ - "11d81078-a34e-4e33-8155-9841523e99ea" + "aea49338-a287-4409-9b0f-56c588a2c4f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163748Z:11d81078-a34e-4e33-8155-9841523e99ea" + "WESTCENTRALUS:20230216T185256Z:aea49338-a287-4409-9b0f-56c588a2c4f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1173,10 +1113,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:48 GMT" + "Thu, 16 Feb 2023 18:52:55 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1185,28 +1125,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a46adc5b-5e65-4b1e-bbdc-ae9a6a9e8f43" + "17005673-833a-420d-b333-545f3f1d5ad6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1218,16 +1158,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11999" ], "x-ms-request-id": [ - "8b350ccb-8209-42f4-9fb9-b42578623b5c" + "bdd86dd0-aed5-4a13-9e50-594f4265b861" ], "x-ms-correlation-request-id": [ - "8b350ccb-8209-42f4-9fb9-b42578623b5c" + "bdd86dd0-aed5-4a13-9e50-594f4265b861" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163749Z:8b350ccb-8209-42f4-9fb9-b42578623b5c" + "WESTCENTRALUS:20230216T185257Z:bdd86dd0-aed5-4a13-9e50-594f4265b861" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1236,10 +1176,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:49 GMT" + "Thu, 16 Feb 2023 18:52:57 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1248,28 +1188,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f815fb57-b7d3-4f0e-8073-4ee364b9938e" + "8c290468-75ea-40aa-90c6-1b89bb318f6f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1281,16 +1221,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11997" ], "x-ms-request-id": [ - "2d7b95fd-2cc1-4498-b0f5-989be42df208" + "07106cd1-1b15-4f91-a3f0-8036ac75871d" ], "x-ms-correlation-request-id": [ - "2d7b95fd-2cc1-4498-b0f5-989be42df208" + "07106cd1-1b15-4f91-a3f0-8036ac75871d" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163750Z:2d7b95fd-2cc1-4498-b0f5-989be42df208" + "WESTCENTRALUS:20230216T185259Z:07106cd1-1b15-4f91-a3f0-8036ac75871d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1299,10 +1239,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:50 GMT" + "Thu, 16 Feb 2023 18:52:59 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1311,28 +1251,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "028c48fa-4fe2-485d-a79e-00ac60a6668c" + "4da7af18-179d-465d-954c-3f7fe40f67db" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1344,16 +1284,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11996" ], "x-ms-request-id": [ - "0db539ac-964b-4b0f-aba0-d27d84dc360e" + "f5736dfb-ea39-49a3-91df-ee5df28f621e" ], "x-ms-correlation-request-id": [ - "0db539ac-964b-4b0f-aba0-d27d84dc360e" + "f5736dfb-ea39-49a3-91df-ee5df28f621e" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163752Z:0db539ac-964b-4b0f-aba0-d27d84dc360e" + "WESTCENTRALUS:20230216T185301Z:f5736dfb-ea39-49a3-91df-ee5df28f621e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1362,10 +1302,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:51 GMT" + "Thu, 16 Feb 2023 18:53:01 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1374,28 +1314,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0beb7788-07c0-4207-8916-290aa997006f" + "c93667a0-261e-4a80-9915-95a7eae6c5a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1407,16 +1347,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11999" ], "x-ms-request-id": [ - "fbf9a7da-2021-450f-86d5-eb3c55097105" + "62f1a03b-b860-4d24-be45-1180329e37e8" ], "x-ms-correlation-request-id": [ - "fbf9a7da-2021-450f-86d5-eb3c55097105" + "62f1a03b-b860-4d24-be45-1180329e37e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163753Z:fbf9a7da-2021-450f-86d5-eb3c55097105" + "WESTCENTRALUS:20230216T185303Z:62f1a03b-b860-4d24-be45-1180329e37e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1425,10 +1365,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:52 GMT" + "Thu, 16 Feb 2023 18:53:02 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1437,28 +1377,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ddff51ab-660a-4ebc-98c7-41a7fab55f10" + "bed45868-3b0e-4f69-9294-f0cba19abea2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1470,16 +1410,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11998" ], "x-ms-request-id": [ - "95aef892-6a46-4bcd-883a-1f2b4390a397" + "936255f1-2bc5-44f0-becb-704783e26b60" ], "x-ms-correlation-request-id": [ - "95aef892-6a46-4bcd-883a-1f2b4390a397" + "936255f1-2bc5-44f0-becb-704783e26b60" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163754Z:95aef892-6a46-4bcd-883a-1f2b4390a397" + "WESTCENTRALUS:20230216T185305Z:936255f1-2bc5-44f0-becb-704783e26b60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,10 +1428,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:53 GMT" + "Thu, 16 Feb 2023 18:53:04 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1500,28 +1440,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85322ff2-b122-4865-8070-7ec3cef9cbc6" + "fc6fd00c-1f74-47c7-80ab-c72a2e054f34" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1533,16 +1473,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11999" ], "x-ms-request-id": [ - "fb4bb6ed-132c-46c4-af38-dfb7796d39c7" + "4f5d2eab-62a5-49fa-97eb-9c8f395bf960" ], "x-ms-correlation-request-id": [ - "fb4bb6ed-132c-46c4-af38-dfb7796d39c7" + "4f5d2eab-62a5-49fa-97eb-9c8f395bf960" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163755Z:fb4bb6ed-132c-46c4-af38-dfb7796d39c7" + "WESTCENTRALUS:20230216T185306Z:4f5d2eab-62a5-49fa-97eb-9c8f395bf960" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1551,10 +1491,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:54 GMT" + "Thu, 16 Feb 2023 18:53:06 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1563,28 +1503,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17ef873f-c2d9-47e3-bfd9-a73f0c92d8d3" + "104ead27-29ed-4037-9976-f2d10f75cbc3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1596,16 +1536,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11999" ], "x-ms-request-id": [ - "bb7d796e-5fcb-40cc-bbfa-2621112cba18" + "9c27a819-9ce4-45eb-ba16-3a3deb42cfe2" ], "x-ms-correlation-request-id": [ - "bb7d796e-5fcb-40cc-bbfa-2621112cba18" + "9c27a819-9ce4-45eb-ba16-3a3deb42cfe2" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163756Z:bb7d796e-5fcb-40cc-bbfa-2621112cba18" + "WESTCENTRALUS:20230216T185308Z:9c27a819-9ce4-45eb-ba16-3a3deb42cfe2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1614,10 +1554,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:55 GMT" + "Thu, 16 Feb 2023 18:53:08 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1626,28 +1566,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9652a0d-adad-41e2-887b-4ccebaafd27b" + "74c3c6a6-e524-42ce-a72a-c091b1a46103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1659,16 +1599,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11998" ], "x-ms-request-id": [ - "c8a43cc8-2ae6-4326-aba5-b0cd1d2c6b79" + "220e2b9b-9b82-42fc-ae94-e62225535f11" ], "x-ms-correlation-request-id": [ - "c8a43cc8-2ae6-4326-aba5-b0cd1d2c6b79" + "220e2b9b-9b82-42fc-ae94-e62225535f11" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163757Z:c8a43cc8-2ae6-4326-aba5-b0cd1d2c6b79" + "WESTCENTRALUS:20230216T185310Z:220e2b9b-9b82-42fc-ae94-e62225535f11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1677,10 +1617,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:57 GMT" + "Thu, 16 Feb 2023 18:53:09 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1689,28 +1629,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99f0e185-df0b-4d0a-9f33-cb987f8ace39" + "932d7929-beb3-4a52-8796-6f08777c8935" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1722,16 +1662,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11992" ], "x-ms-request-id": [ - "f9eb91a4-e021-4d31-b00b-a3f988ee656c" + "bd927546-d3c9-4e64-a5bb-1624a5c4a440" ], "x-ms-correlation-request-id": [ - "f9eb91a4-e021-4d31-b00b-a3f988ee656c" + "bd927546-d3c9-4e64-a5bb-1624a5c4a440" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163758Z:f9eb91a4-e021-4d31-b00b-a3f988ee656c" + "WESTCENTRALUS:20230216T185312Z:bd927546-d3c9-4e64-a5bb-1624a5c4a440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1740,10 +1680,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:58 GMT" + "Thu, 16 Feb 2023 18:53:12 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1752,28 +1692,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d043b3ef-c69a-48d6-b1e6-21804995bbfa" + "16d53476-c8cd-48c4-ba14-62c0d2bb45b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1785,16 +1725,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11991" ], "x-ms-request-id": [ - "c255b1e4-43d3-47d8-bd66-51727acc3843" + "aa42e9a7-9352-4d31-abcf-74a8aecd167f" ], "x-ms-correlation-request-id": [ - "c255b1e4-43d3-47d8-bd66-51727acc3843" + "aa42e9a7-9352-4d31-abcf-74a8aecd167f" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163759Z:c255b1e4-43d3-47d8-bd66-51727acc3843" + "WESTCENTRALUS:20230216T185313Z:aa42e9a7-9352-4d31-abcf-74a8aecd167f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1803,10 +1743,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:59 GMT" + "Thu, 16 Feb 2023 18:53:13 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1815,28 +1755,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d1aae20-093d-4538-b20b-280063f37422" + "7da1a65c-6b8d-4722-8d1e-6ed825575b1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1848,16 +1788,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11997" ], "x-ms-request-id": [ - "a95b922f-036a-4625-a26a-733ee66cbb5f" + "d8937e22-910e-4bde-8af4-0eb7c463d5aa" ], "x-ms-correlation-request-id": [ - "a95b922f-036a-4625-a26a-733ee66cbb5f" + "d8937e22-910e-4bde-8af4-0eb7c463d5aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163800Z:a95b922f-036a-4625-a26a-733ee66cbb5f" + "WESTCENTRALUS:20230216T185315Z:d8937e22-910e-4bde-8af4-0eb7c463d5aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1866,10 +1806,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:38:00 GMT" + "Thu, 16 Feb 2023 18:53:15 GMT" ], "Content-Length": [ - "1488" + "1567" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1878,28 +1818,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277\",\r\n \"name\": \"ps4277\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1138\",\r\n \"etag\": \"AAAADFriifE=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4277.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4277\",\r\n \"endpoint\": \"sb://iothub-ns-ps4277-15425739-55eaf84881.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986\",\r\n \"name\": \"ps7986\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps5130\",\r\n \"etag\": \"AAAADHxV94M=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps7986.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7986\",\r\n \"endpoint\": \"sb://iothub-ns-ps7986-24619239-03d3f5a9c2.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:50:37.3766667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dda0a337-a8e5-42b6-b3fd-2ef6e28068fd" + "57daaf28-8aaf-489f-8e78-cc64a5837848" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1911,16 +1851,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "b9ff1d3c-bfdf-46a9-b31b-9fe0eb2ced71" + "aca9df16-bc43-43f3-a613-b61e7b40621f" ], "x-ms-correlation-request-id": [ - "b9ff1d3c-bfdf-46a9-b31b-9fe0eb2ced71" + "aca9df16-bc43-43f3-a613-b61e7b40621f" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163740Z:b9ff1d3c-bfdf-46a9-b31b-9fe0eb2ced71" + "WESTCENTRALUS:20230216T185241Z:aca9df16-bc43-43f3-a613-b61e7b40621f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1929,7 +1869,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:40 GMT" + "Thu, 16 Feb 2023 18:52:41 GMT" ], "Content-Length": [ "905" @@ -1941,28 +1881,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aecdb949-3ae6-4910-bef8-85fe5f821884" + "5f590151-84f5-43f7-832b-633897a0cda4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1974,16 +1914,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "7815b0c5-e215-4073-b292-2de553029772" + "87f4cc96-8f8f-4fe4-9681-def56176bfc8" ], "x-ms-correlation-request-id": [ - "7815b0c5-e215-4073-b292-2de553029772" + "87f4cc96-8f8f-4fe4-9681-def56176bfc8" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163741Z:7815b0c5-e215-4073-b292-2de553029772" + "WESTCENTRALUS:20230216T185243Z:87f4cc96-8f8f-4fe4-9681-def56176bfc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1992,7 +1932,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:41 GMT" + "Thu, 16 Feb 2023 18:52:43 GMT" ], "Content-Length": [ "905" @@ -2004,28 +1944,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a568b816-efbe-4bae-8f60-083885f42f26" + "9b000b9c-92b9-4b61-a511-117f1aedcca9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2037,16 +1977,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "e1f8a71f-d66e-4d60-b7b6-af71d8705e33" + "9dc1a916-472f-4cb2-8ea5-2e8e6c5d0fda" ], "x-ms-correlation-request-id": [ - "e1f8a71f-d66e-4d60-b7b6-af71d8705e33" + "9dc1a916-472f-4cb2-8ea5-2e8e6c5d0fda" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163742Z:e1f8a71f-d66e-4d60-b7b6-af71d8705e33" + "WESTCENTRALUS:20230216T185245Z:9dc1a916-472f-4cb2-8ea5-2e8e6c5d0fda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2055,7 +1995,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:42 GMT" + "Thu, 16 Feb 2023 18:52:44 GMT" ], "Content-Length": [ "905" @@ -2067,28 +2007,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3e599a8-50dc-4ad5-bc62-a8b7881a586d" + "62215ef5-51e7-4d82-9921-6e4f149905e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2100,16 +2040,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "565db3e9-057b-469c-890d-2c40a0aa7969" + "2c25a06d-7cde-4209-af2c-47361cd6cdae" ], "x-ms-correlation-request-id": [ - "565db3e9-057b-469c-890d-2c40a0aa7969" + "2c25a06d-7cde-4209-af2c-47361cd6cdae" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163744Z:565db3e9-057b-469c-890d-2c40a0aa7969" + "WESTCENTRALUS:20230216T185248Z:2c25a06d-7cde-4209-af2c-47361cd6cdae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2118,7 +2058,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:43 GMT" + "Thu, 16 Feb 2023 18:52:47 GMT" ], "Content-Length": [ "905" @@ -2130,28 +2070,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61494b7f-b021-454e-b30d-043de77f9ceb" + "99111bf0-bc18-489f-8ea5-77667dcc2826" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2163,16 +2103,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "4fe0684f-4560-4cb9-9766-cf912adb8c7c" + "9d5c6b31-f1fa-407e-b01e-ea129d395630" ], "x-ms-correlation-request-id": [ - "4fe0684f-4560-4cb9-9766-cf912adb8c7c" + "9d5c6b31-f1fa-407e-b01e-ea129d395630" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163745Z:4fe0684f-4560-4cb9-9766-cf912adb8c7c" + "WESTCENTRALUS:20230216T185250Z:9d5c6b31-f1fa-407e-b01e-ea129d395630" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2181,7 +2121,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:44 GMT" + "Thu, 16 Feb 2023 18:52:49 GMT" ], "Content-Length": [ "905" @@ -2193,28 +2133,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d67823fd-97b2-4269-90a9-fe494ed88ac2" + "0c3c52f8-029a-4b30-aafb-df5f45a509fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2226,16 +2166,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "a8d4daa2-bb64-4fee-85e3-4219e8bc0247" + "3dacd41b-e427-4492-94f5-c61bc9236f35" ], "x-ms-correlation-request-id": [ - "a8d4daa2-bb64-4fee-85e3-4219e8bc0247" + "3dacd41b-e427-4492-94f5-c61bc9236f35" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163746Z:a8d4daa2-bb64-4fee-85e3-4219e8bc0247" + "WESTCENTRALUS:20230216T185251Z:3dacd41b-e427-4492-94f5-c61bc9236f35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2244,7 +2184,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:45 GMT" + "Thu, 16 Feb 2023 18:52:51 GMT" ], "Content-Length": [ "905" @@ -2256,28 +2196,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c3625b6-0e23-4b1f-94dd-4555b02f8c7c" + "3edaca63-62d6-47cb-8a58-96822fee557a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2289,16 +2229,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-request-id": [ - "4b7392ab-63df-4442-9e8d-1b4b4a8f3ade" + "a6afb459-3dee-47c4-bbd0-4aa55e78c91a" ], "x-ms-correlation-request-id": [ - "4b7392ab-63df-4442-9e8d-1b4b4a8f3ade" + "a6afb459-3dee-47c4-bbd0-4aa55e78c91a" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163747Z:4b7392ab-63df-4442-9e8d-1b4b4a8f3ade" + "WESTCENTRALUS:20230216T185253Z:a6afb459-3dee-47c4-bbd0-4aa55e78c91a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2307,7 +2247,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:46 GMT" + "Thu, 16 Feb 2023 18:52:52 GMT" ], "Content-Length": [ "905" @@ -2319,28 +2259,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a02d05b-f051-41fa-b3d9-0bdb27928b60" + "d72671ef-5678-4ff6-b1fa-2dad02452bdd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2352,16 +2292,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-request-id": [ - "1d4cc370-6440-46a5-87da-d98e15fc8857" + "6ca2bb2b-e9c3-4bb7-8d96-b67ae342a5af" ], "x-ms-correlation-request-id": [ - "1d4cc370-6440-46a5-87da-d98e15fc8857" + "6ca2bb2b-e9c3-4bb7-8d96-b67ae342a5af" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163748Z:1d4cc370-6440-46a5-87da-d98e15fc8857" + "WESTCENTRALUS:20230216T185254Z:6ca2bb2b-e9c3-4bb7-8d96-b67ae342a5af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2370,7 +2310,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:47 GMT" + "Thu, 16 Feb 2023 18:52:54 GMT" ], "Content-Length": [ "905" @@ -2382,28 +2322,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71692c98-8166-4b0d-80cb-553228223f77" + "9e85a79a-111e-4f52-881a-394692bd3e3c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2415,16 +2355,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-request-id": [ - "7bb9327e-c87d-4c15-bb9b-0d1943985e7c" + "033e162b-2d05-45eb-81ab-2a786c5f8bb2" ], "x-ms-correlation-request-id": [ - "7bb9327e-c87d-4c15-bb9b-0d1943985e7c" + "033e162b-2d05-45eb-81ab-2a786c5f8bb2" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163749Z:7bb9327e-c87d-4c15-bb9b-0d1943985e7c" + "WESTCENTRALUS:20230216T185256Z:033e162b-2d05-45eb-81ab-2a786c5f8bb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2433,7 +2373,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:48 GMT" + "Thu, 16 Feb 2023 18:52:55 GMT" ], "Content-Length": [ "905" @@ -2445,28 +2385,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a46adc5b-5e65-4b1e-bbdc-ae9a6a9e8f43" + "17005673-833a-420d-b333-545f3f1d5ad6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2478,16 +2418,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-request-id": [ - "7a94deb7-97c4-4b23-878a-7c9d8d0d06df" + "eae5cd06-f987-42ff-a2c4-7678ee21498c" ], "x-ms-correlation-request-id": [ - "7a94deb7-97c4-4b23-878a-7c9d8d0d06df" + "eae5cd06-f987-42ff-a2c4-7678ee21498c" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163750Z:7a94deb7-97c4-4b23-878a-7c9d8d0d06df" + "WESTCENTRALUS:20230216T185258Z:eae5cd06-f987-42ff-a2c4-7678ee21498c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2496,7 +2436,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:49 GMT" + "Thu, 16 Feb 2023 18:52:57 GMT" ], "Content-Length": [ "905" @@ -2508,28 +2448,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f815fb57-b7d3-4f0e-8073-4ee364b9938e" + "8c290468-75ea-40aa-90c6-1b89bb318f6f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2541,16 +2481,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-request-id": [ - "d2c22945-0851-4f21-8e08-40f4c85e7e8d" + "768e3ee5-225e-47d3-a5b7-00234f68fc2f" ], "x-ms-correlation-request-id": [ - "d2c22945-0851-4f21-8e08-40f4c85e7e8d" + "768e3ee5-225e-47d3-a5b7-00234f68fc2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163751Z:d2c22945-0851-4f21-8e08-40f4c85e7e8d" + "WESTCENTRALUS:20230216T185259Z:768e3ee5-225e-47d3-a5b7-00234f68fc2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2559,7 +2499,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:50 GMT" + "Thu, 16 Feb 2023 18:52:59 GMT" ], "Content-Length": [ "905" @@ -2571,28 +2511,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "028c48fa-4fe2-485d-a79e-00ac60a6668c" + "4da7af18-179d-465d-954c-3f7fe40f67db" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2604,16 +2544,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1196" ], "x-ms-request-id": [ - "0191fd50-b9a2-451b-83b9-be332abf384a" + "0ab4cc02-c69f-4d16-9310-4f04e9754593" ], "x-ms-correlation-request-id": [ - "0191fd50-b9a2-451b-83b9-be332abf384a" + "0ab4cc02-c69f-4d16-9310-4f04e9754593" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163752Z:0191fd50-b9a2-451b-83b9-be332abf384a" + "WESTCENTRALUS:20230216T185301Z:0ab4cc02-c69f-4d16-9310-4f04e9754593" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2622,7 +2562,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:51 GMT" + "Thu, 16 Feb 2023 18:53:01 GMT" ], "Content-Length": [ "905" @@ -2634,28 +2574,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0beb7788-07c0-4207-8916-290aa997006f" + "c93667a0-261e-4a80-9915-95a7eae6c5a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2667,16 +2607,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1199" ], "x-ms-request-id": [ - "435af87a-326f-4561-8172-86559dc93075" + "111904a9-d4fe-42f2-8668-0ca3431bed25" ], "x-ms-correlation-request-id": [ - "435af87a-326f-4561-8172-86559dc93075" + "111904a9-d4fe-42f2-8668-0ca3431bed25" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163753Z:435af87a-326f-4561-8172-86559dc93075" + "WESTCENTRALUS:20230216T185303Z:111904a9-d4fe-42f2-8668-0ca3431bed25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2685,7 +2625,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:53 GMT" + "Thu, 16 Feb 2023 18:53:03 GMT" ], "Content-Length": [ "905" @@ -2697,28 +2637,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ddff51ab-660a-4ebc-98c7-41a7fab55f10" + "bed45868-3b0e-4f69-9294-f0cba19abea2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2730,16 +2670,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1199" ], "x-ms-request-id": [ - "db1e8a99-a142-4a08-8e8d-e597f543aa6a" + "b1f3418a-58f0-432e-8854-689812f172f6" ], "x-ms-correlation-request-id": [ - "db1e8a99-a142-4a08-8e8d-e597f543aa6a" + "b1f3418a-58f0-432e-8854-689812f172f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163754Z:db1e8a99-a142-4a08-8e8d-e597f543aa6a" + "WESTCENTRALUS:20230216T185305Z:b1f3418a-58f0-432e-8854-689812f172f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2748,7 +2688,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:53 GMT" + "Thu, 16 Feb 2023 18:53:05 GMT" ], "Content-Length": [ "905" @@ -2760,28 +2700,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85322ff2-b122-4865-8070-7ec3cef9cbc6" + "fc6fd00c-1f74-47c7-80ab-c72a2e054f34" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2793,16 +2733,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1199" ], "x-ms-request-id": [ - "4b12fd8d-3c56-4987-8128-e95ec36a61d9" + "fb597732-2205-4f90-a964-fd5efffc16df" ], "x-ms-correlation-request-id": [ - "4b12fd8d-3c56-4987-8128-e95ec36a61d9" + "fb597732-2205-4f90-a964-fd5efffc16df" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163755Z:4b12fd8d-3c56-4987-8128-e95ec36a61d9" + "WESTCENTRALUS:20230216T185306Z:fb597732-2205-4f90-a964-fd5efffc16df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2811,7 +2751,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:54 GMT" + "Thu, 16 Feb 2023 18:53:06 GMT" ], "Content-Length": [ "905" @@ -2823,28 +2763,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17ef873f-c2d9-47e3-bfd9-a73f0c92d8d3" + "104ead27-29ed-4037-9976-f2d10f75cbc3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2856,16 +2796,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1199" ], "x-ms-request-id": [ - "e6617b00-90c7-4bdf-aed5-8f0aee9cdfb5" + "a8005d2d-329d-475e-b934-966947514635" ], "x-ms-correlation-request-id": [ - "e6617b00-90c7-4bdf-aed5-8f0aee9cdfb5" + "a8005d2d-329d-475e-b934-966947514635" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163756Z:e6617b00-90c7-4bdf-aed5-8f0aee9cdfb5" + "WESTCENTRALUS:20230216T185309Z:a8005d2d-329d-475e-b934-966947514635" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2874,7 +2814,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:56 GMT" + "Thu, 16 Feb 2023 18:53:08 GMT" ], "Content-Length": [ "905" @@ -2886,28 +2826,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9652a0d-adad-41e2-887b-4ccebaafd27b" + "74c3c6a6-e524-42ce-a72a-c091b1a46103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2919,16 +2859,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1198" ], "x-ms-request-id": [ - "be1607ae-3a09-48ae-832d-845b4e5dd799" + "1ced8a77-d65c-4a6c-9731-1df784bb8302" ], "x-ms-correlation-request-id": [ - "be1607ae-3a09-48ae-832d-845b4e5dd799" + "1ced8a77-d65c-4a6c-9731-1df784bb8302" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163758Z:be1607ae-3a09-48ae-832d-845b4e5dd799" + "WESTCENTRALUS:20230216T185311Z:1ced8a77-d65c-4a6c-9731-1df784bb8302" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2937,7 +2877,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:57 GMT" + "Thu, 16 Feb 2023 18:53:10 GMT" ], "Content-Length": [ "905" @@ -2949,28 +2889,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99f0e185-df0b-4d0a-9f33-cb987f8ace39" + "932d7929-beb3-4a52-8796-6f08777c8935" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2982,16 +2922,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1199" ], "x-ms-request-id": [ - "b4e54692-3ccf-40f6-9d4d-71d2603dc99c" + "b725205b-911d-44f1-bfe3-7c4ae0453ff6" ], "x-ms-correlation-request-id": [ - "b4e54692-3ccf-40f6-9d4d-71d2603dc99c" + "b725205b-911d-44f1-bfe3-7c4ae0453ff6" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163758Z:b4e54692-3ccf-40f6-9d4d-71d2603dc99c" + "WESTCENTRALUS:20230216T185312Z:b725205b-911d-44f1-bfe3-7c4ae0453ff6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3000,7 +2940,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:58 GMT" + "Thu, 16 Feb 2023 18:53:12 GMT" ], "Content-Length": [ "905" @@ -3012,28 +2952,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d043b3ef-c69a-48d6-b1e6-21804995bbfa" + "16d53476-c8cd-48c4-ba14-62c0d2bb45b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3045,16 +2985,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1198" ], "x-ms-request-id": [ - "6d90bfc3-5083-42f0-87f0-9fedcb6db795" + "244d3c82-2234-48fb-8d9b-bd0aa7be4c99" ], "x-ms-correlation-request-id": [ - "6d90bfc3-5083-42f0-87f0-9fedcb6db795" + "244d3c82-2234-48fb-8d9b-bd0aa7be4c99" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163800Z:6d90bfc3-5083-42f0-87f0-9fedcb6db795" + "WESTCENTRALUS:20230216T185314Z:244d3c82-2234-48fb-8d9b-bd0aa7be4c99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3063,7 +3003,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:37:59 GMT" + "Thu, 16 Feb 2023 18:53:13 GMT" ], "Content-Length": [ "905" @@ -3075,28 +3015,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzcvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODYvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d1aae20-093d-4538-b20b-280063f37422" + "7da1a65c-6b8d-4722-8d1e-6ed825575b1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3108,16 +3048,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1197" ], "x-ms-request-id": [ - "663e1163-edcf-457d-aebb-ebe2f7cc06e0" + "c82ea8fc-d8f8-49cb-a871-662c1a203654" ], "x-ms-correlation-request-id": [ - "663e1163-edcf-457d-aebb-ebe2f7cc06e0" + "c82ea8fc-d8f8-49cb-a871-662c1a203654" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163800Z:663e1163-edcf-457d-aebb-ebe2f7cc06e0" + "WESTCENTRALUS:20230216T185315Z:c82ea8fc-d8f8-49cb-a871-662c1a203654" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3126,7 +3066,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:38:00 GMT" + "Thu, 16 Feb 2023 18:53:15 GMT" ], "Content-Length": [ "905" @@ -3138,28 +3078,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"HZc0B58UAuhzaGAYgkxctdZa9Ee4xDZzhjcnBZiEeLI=\",\r\n \"secondaryKey\": \"Lo0q4637M4hladhIHxikyK1EzfrXc2H4nOeR7PsZbTk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"zVUleRNEmXfuWVlNFuXkGHt6zo/TUztB3FhZBKuTAes=\",\r\n \"secondaryKey\": \"ZXil38qQ5SdI8Kl41iGp5J1PqPqeyzYfJnbW3b2ePho=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"93d5pDUzP/CtUDkSeyZEdjYpmtfLROJcHeZVmIYJJHc=\",\r\n \"secondaryKey\": \"aW6wKXjV5YlWIV4pjS1JJkrpWxDC93ZqMLPUwjBHaXc=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"yut1ymPpPnt140iAHXb7JTWNlc2I00meVjLx3xScpzQ=\",\r\n \"secondaryKey\": \"6krAP+NvYinJdUJbMj9owBIRk5NheZAY7hGkOmMKQcg=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"nxunlwbmMyuTIh9G/3QJ+fAl6MYw2+DKxWuge86U9Hc=\",\r\n \"secondaryKey\": \"3DBMPh+tz1gOkYVuFWF7rx8CFF0hokKy74OzOkWko5g=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1138/providers/Microsoft.Devices/IotHubs/ps4277?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTEzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQyNzc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps5130/providers/Microsoft.Devices/IotHubs/ps7986?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNTEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc5ODY/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4de87254-c90a-4938-b8be-0608de5ccc62" + "bc6fdfb3-5b18-41fe-be4d-13e4882d8103" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3168,13 +3108,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYzkwZGQyNzktMmRjZi00OGQ4LWJkYmItNjEyYTAwNjY3YjFiO3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYjE3YmZlNDMtMmNjYS00Yzg0LThlNDQtZTI0ZGJmYjcxMDQ3O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other" ], "Retry-After": [ "15" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYzkwZGQyNzktMmRjZi00OGQ4LWJkYmItNjEyYTAwNjY3YjFiO3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYjE3YmZlNDMtMmNjYS00Yzg0LThlNDQtZTI0ZGJmYjcxMDQ3O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3183,13 +3123,13 @@ "14999" ], "x-ms-request-id": [ - "802db3ac-05c5-4c45-b34c-6603953c6cbd" + "cb1def40-96c4-4e1f-9093-a647e9654523" ], "x-ms-correlation-request-id": [ - "802db3ac-05c5-4c45-b34c-6603953c6cbd" + "cb1def40-96c4-4e1f-9093-a647e9654523" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163803Z:802db3ac-05c5-4c45-b34c-6603953c6cbd" + "WESTCENTRALUS:20230216T185318Z:cb1def40-96c4-4e1f-9093-a647e9654523" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3198,7 +3138,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:38:02 GMT" + "Thu, 16 Feb 2023 18:53:18 GMT" ], "Content-Length": [ "4" @@ -3214,21 +3154,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYzkwZGQyNzktMmRjZi00OGQ4LWJkYmItNjEyYTAwNjY3YjFiO3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWXprd1pHUXlOemt0TW1SalppMDBPR1E0TFdKa1ltSXROakV5WVRBd05qWTNZakZpTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMC0wMy0wMSZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYjE3YmZlNDMtMmNjYS00Yzg0LThlNDQtZTI0ZGJmYjcxMDQ3O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWWpFM1ltWmxORE10TW1OallTMDBZemcwTFRobE5EUXRaVEkwWkdKbVlqY3hNRFEzTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4de87254-c90a-4938-b8be-0608de5ccc62" + "bc6fdfb3-5b18-41fe-be4d-13e4882d8103" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3240,16 +3180,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11998" ], "x-ms-request-id": [ - "b35e5d12-c814-43fd-b249-2f31cacfe502" + "66e82a9a-a398-4ccf-9228-0d56c8d36d86" ], "x-ms-correlation-request-id": [ - "b35e5d12-c814-43fd-b249-2f31cacfe502" + "66e82a9a-a398-4ccf-9228-0d56c8d36d86" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163818Z:b35e5d12-c814-43fd-b249-2f31cacfe502" + "WESTCENTRALUS:20230216T185333Z:66e82a9a-a398-4ccf-9228-0d56c8d36d86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3258,7 +3198,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:38:17 GMT" + "Thu, 16 Feb 2023 18:53:33 GMT" ], "Content-Length": [ "22" @@ -3274,21 +3214,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYzkwZGQyNzktMmRjZi00OGQ4LWJkYmItNjEyYTAwNjY3YjFiO3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWXprd1pHUXlOemt0TW1SalppMDBPR1E0TFdKa1ltSXROakV5WVRBd05qWTNZakZpTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMC0wMy0wMSZvcGVyYXRpb25Tb3VyY2U9b3RoZXI=", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYjE3YmZlNDMtMmNjYS00Yzg0LThlNDQtZTI0ZGJmYjcxMDQ3O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmWWpFM1ltWmxORE10TW1OallTMDBZemcwTFRobE5EUXRaVEkwWkdKbVlqY3hNRFEzTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXI=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4de87254-c90a-4938-b8be-0608de5ccc62" + "bc6fdfb3-5b18-41fe-be4d-13e4882d8103" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3297,7 +3237,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYzkwZGQyNzktMmRjZi00OGQ4LWJkYmItNjEyYTAwNjY3YjFiO3JlZ2lvbj13ZXN0dXM%3D?api-version=2020-03-01&operationSource=other" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYjE3YmZlNDMtMmNjYS00Yzg0LThlNDQtZTI0ZGJmYjcxMDQ3O3JlZ2lvbj13ZXN0dXM%3D?api-version=2021-07-02&operationSource=other" ], "Retry-After": [ "15" @@ -3306,16 +3246,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11997" ], "x-ms-request-id": [ - "42258806-90f7-4e68-8fa7-74ab9eb78c30" + "fc690c0f-64c3-44d6-96d4-9e1fa9228a66" ], "x-ms-correlation-request-id": [ - "42258806-90f7-4e68-8fa7-74ab9eb78c30" + "fc690c0f-64c3-44d6-96d4-9e1fa9228a66" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T163818Z:42258806-90f7-4e68-8fa7-74ab9eb78c30" + "WESTCENTRALUS:20230216T185333Z:fc690c0f-64c3-44d6-96d4-9e1fa9228a66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3324,7 +3264,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:38:17 GMT" + "Thu, 16 Feb 2023 18:53:33 GMT" ], "Expires": [ "-1" @@ -3339,12 +3279,12 @@ ], "Names": { "Test-AzureRmIotHubConfigurationLifecycle": [ - "ps4277", - "ps1138", - "ps6428", - "ps6562", - "ps9866", - "ps511" + "ps7986", + "ps5130", + "ps6064", + "ps8939", + "ps5652", + "ps2228" ] }, "Variables": { 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 f293bdf081aa..ac8f23d6bf7f 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 @@ -4,21 +4,21 @@ "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adfb2bd3-41a3-4c29-aa61-1dbbd81aa586" + "ed5d2d5f-58a8-4f4c-89cc-88f979fd110f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.47" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "543001fd-7b6d-4699-87fa-4dd337876bd7" + "acb39d55-e6fe-4602-92ed-8257108c2997" ], "x-ms-correlation-request-id": [ - "543001fd-7b6d-4699-87fa-4dd337876bd7" + "acb39d55-e6fe-4602-92ed-8257108c2997" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161438Z:543001fd-7b6d-4699-87fa-4dd337876bd7" + "WESTCENTRALUS:20230216T184602Z:acb39d55-e6fe-4602-92ed-8257108c2997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:14:37 GMT" + "Thu, 16 Feb 2023 18:46:01 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,28 @@ "-1" ], "Content-Length": [ - "8553" + "9626" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"roleDefinitionId\": \"d04fc6c0-fc10-4ab8-b7de-c979247c3b65\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\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\": \"IotHubs/failover\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 3\",\r\n \"Germany West Central\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Germany North\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-02-01-preview\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-12-01-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 ],\r\n \"apiVersions\": [\r\n \"2021-02-01-preview\",\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/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"roleDefinitionId\": \"d04fc6c0-fc10-4ab8-b7de-c979247c3b65\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"provisioningServiceOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-09-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations/provisioningServiceOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway EAST\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\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\": \"IotHubs/failover\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"Australia Central\"\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps4562?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzNDU2Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps2081?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzMjA4MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "97a228ac-652b-4830-9239-93b713c1faaa" + "8a399ee0-aaa2-4a04-af3d-cd34b2e3c313" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.47" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -85,6 +84,7 @@ "29" ] }, + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "7614c5f2-59d1-4d95-b8b4-063aa321ed7e" + "0a012f50-ee1c-45a7-b53a-016a00125678" ], "x-ms-correlation-request-id": [ - "7614c5f2-59d1-4d95-b8b4-063aa321ed7e" + "0a012f50-ee1c-45a7-b53a-016a00125678" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161439Z:7614c5f2-59d1-4d95-b8b4-063aa321ed7e" + "WESTCENTRALUS:20230216T184603Z:0a012f50-ee1c-45a7-b53a-016a00125678" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:14:38 GMT" + "Thu, 16 Feb 2023 18:46:02 GMT" ], "Content-Length": [ "165" @@ -123,26 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562\",\r\n \"name\": \"ps4562\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081\",\r\n \"name\": \"ps2081\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "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": [ - "3d4bf46d-aaee-4274-829c-bfcec870c840" + "168909d1-e79d-44ee-990b-c9b6820a1b73" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -151,6 +150,7 @@ "85" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfN2I5ZDE4MDUtNDgxMS00N2UwLWFkNDItMDdmZTRiYTE2ZDNhO3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNDRlMGYxOGQtOWQ0MC00Nzk0LWJlYzItZTM3Nzk5YzVhN2ZkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "2803c081-91a6-40ab-9a7d-dd6dff4228bc" + "087977e7-e79d-4e0f-9fcb-c5b586aec6e7" ], "x-ms-correlation-request-id": [ - "2803c081-91a6-40ab-9a7d-dd6dff4228bc" + "087977e7-e79d-4e0f-9fcb-c5b586aec6e7" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161442Z:2803c081-91a6-40ab-9a7d-dd6dff4228bc" + "WESTCENTRALUS:20230216T184608Z:087977e7-e79d-4e0f-9fcb-c5b586aec6e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,10 +183,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:14:41 GMT" + "Thu, 16 Feb 2023 18:46:07 GMT" ], "Content-Length": [ - "619" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,25 +195,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\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/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfN2I5ZDE4MDUtNDgxMS00N2UwLWFkNDItMDdmZTRiYTE2ZDNhO3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTjJJNVpERTRNRFV0TkRneE1TMDBOMlV3TFdGa05ESXRNRGRtWlRSaVlURTJaRE5oTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMC0wMy0wMSZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNDRlMGYxOGQtOWQ0MC00Nzk0LWJlYzItZTM3Nzk5YzVhN2ZkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTkRSbE1HWXhPR1F0T1dRME1DMDBOemswTFdKbFl6SXRaVE0zTnprNVl6VmhOMlprTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d4bf46d-aaee-4274-829c-bfcec870c840" + "168909d1-e79d-44ee-990b-c9b6820a1b73" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -225,16 +225,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "ee48a91d-2ebb-4888-b96f-24565fba58e7" + "511de8bb-7101-4f7f-9beb-49f0cabe653e" ], "x-ms-correlation-request-id": [ - "ee48a91d-2ebb-4888-b96f-24565fba58e7" + "511de8bb-7101-4f7f-9beb-49f0cabe653e" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161512Z:ee48a91d-2ebb-4888-b96f-24565fba58e7" + "WESTCENTRALUS:20230216T184638Z:511de8bb-7101-4f7f-9beb-49f0cabe653e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,7 +243,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:15:11 GMT" + "Thu, 16 Feb 2023 18:46:38 GMT" ], "Content-Length": [ "20" @@ -259,21 +259,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfN2I5ZDE4MDUtNDgxMS00N2UwLWFkNDItMDdmZTRiYTE2ZDNhO3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTjJJNVpERTRNRFV0TkRneE1TMDBOMlV3TFdGa05ESXRNRGRtWlRSaVlURTJaRE5oTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMC0wMy0wMSZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNDRlMGYxOGQtOWQ0MC00Nzk0LWJlYzItZTM3Nzk5YzVhN2ZkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTkRSbE1HWXhPR1F0T1dRME1DMDBOemswTFdKbFl6SXRaVE0zTnprNVl6VmhOMlprTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d4bf46d-aaee-4274-829c-bfcec870c840" + "168909d1-e79d-44ee-990b-c9b6820a1b73" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -285,16 +285,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "1b340a8e-d7b6-4e3e-8e9e-5730a07137e0" + "3cbe6320-7552-491a-abad-29562a3be496" ], "x-ms-correlation-request-id": [ - "1b340a8e-d7b6-4e3e-8e9e-5730a07137e0" + "3cbe6320-7552-491a-abad-29562a3be496" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161542Z:1b340a8e-d7b6-4e3e-8e9e-5730a07137e0" + "WESTCENTRALUS:20230216T184709Z:3cbe6320-7552-491a-abad-29562a3be496" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +303,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:15:41 GMT" + "Thu, 16 Feb 2023 18:47:08 GMT" ], "Content-Length": [ "20" @@ -319,21 +319,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfN2I5ZDE4MDUtNDgxMS00N2UwLWFkNDItMDdmZTRiYTE2ZDNhO3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTjJJNVpERTRNRFV0TkRneE1TMDBOMlV3TFdGa05ESXRNRGRtWlRSaVlURTJaRE5oTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMC0wMy0wMSZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNDRlMGYxOGQtOWQ0MC00Nzk0LWJlYzItZTM3Nzk5YzVhN2ZkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTkRSbE1HWXhPR1F0T1dRME1DMDBOemswTFdKbFl6SXRaVE0zTnprNVl6VmhOMlprTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d4bf46d-aaee-4274-829c-bfcec870c840" + "168909d1-e79d-44ee-990b-c9b6820a1b73" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -345,16 +345,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "bbf104d5-b5e8-4ec1-b978-8ba6e0f408bb" + "ab63c606-3bb5-4b68-a3b1-1db3812bccd4" ], "x-ms-correlation-request-id": [ - "bbf104d5-b5e8-4ec1-b978-8ba6e0f408bb" + "ab63c606-3bb5-4b68-a3b1-1db3812bccd4" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161612Z:bbf104d5-b5e8-4ec1-b978-8ba6e0f408bb" + "WESTCENTRALUS:20230216T184739Z:ab63c606-3bb5-4b68-a3b1-1db3812bccd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,7 +363,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:12 GMT" + "Thu, 16 Feb 2023 18:47:38 GMT" ], "Content-Length": [ "20" @@ -379,21 +379,81 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfN2I5ZDE4MDUtNDgxMS00N2UwLWFkNDItMDdmZTRiYTE2ZDNhO3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTjJJNVpERTRNRFV0TkRneE1TMDBOMlV3TFdGa05ESXRNRGRtWlRSaVlURTJaRE5oTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMC0wMy0wMSZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNDRlMGYxOGQtOWQ0MC00Nzk0LWJlYzItZTM3Nzk5YzVhN2ZkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTkRSbE1HWXhPR1F0T1dRME1DMDBOemswTFdKbFl6SXRaVE0zTnprNVl6VmhOMlprTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "168909d1-e79d-44ee-990b-c9b6820a1b73" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "cafabb01-b401-40f0-b10c-f91bdd9859a9" + ], + "x-ms-correlation-request-id": [ + "cafabb01-b401-40f0-b10c-f91bdd9859a9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20230216T184809Z:cafabb01-b401-40f0-b10c-f91bdd9859a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Feb 2023 18:48:09 GMT" + ], + "Content-Length": [ + "20" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNDRlMGYxOGQtOWQ0MC00Nzk0LWJlYzItZTM3Nzk5YzVhN2ZkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTkRSbE1HWXhPR1F0T1dRME1DMDBOemswTFdKbFl6SXRaVE0zTnprNVl6VmhOMlprTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "3d4bf46d-aaee-4274-829c-bfcec870c840" + "168909d1-e79d-44ee-990b-c9b6820a1b73" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -405,16 +465,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "4a187dab-2e69-47a8-bccf-5c89b45ffc83" + "43d5f541-0b68-4d70-9517-064867500831" ], "x-ms-correlation-request-id": [ - "4a187dab-2e69-47a8-bccf-5c89b45ffc83" + "43d5f541-0b68-4d70-9517-064867500831" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161642Z:4a187dab-2e69-47a8-bccf-5c89b45ffc83" + "WESTCENTRALUS:20230216T184839Z:43d5f541-0b68-4d70-9517-064867500831" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -423,7 +483,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:42 GMT" + "Thu, 16 Feb 2023 18:48:39 GMT" ], "Content-Length": [ "22" @@ -439,21 +499,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d4bf46d-aaee-4274-829c-bfcec870c840" + "168909d1-e79d-44ee-990b-c9b6820a1b73" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -465,16 +525,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "ce849682-6e01-4f43-83d2-87e5da8bd487" + "3efd40fe-3542-4362-9f69-30aa0605702e" ], "x-ms-correlation-request-id": [ - "ce849682-6e01-4f43-83d2-87e5da8bd487" + "3efd40fe-3542-4362-9f69-30aa0605702e" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161643Z:ce849682-6e01-4f43-83d2-87e5da8bd487" + "WESTCENTRALUS:20230216T184840Z:3efd40fe-3542-4362-9f69-30aa0605702e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,10 +543,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:43 GMT" + "Thu, 16 Feb 2023 18:48:39 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,28 +555,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d4bf46d-aaee-4274-829c-bfcec870c840" + "168909d1-e79d-44ee-990b-c9b6820a1b73" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -528,16 +588,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "484421ff-7862-4395-9af1-4f1e666b8fe1" + "945d68a1-4b3d-4e6a-99d1-da5b65e933de" ], "x-ms-correlation-request-id": [ - "484421ff-7862-4395-9af1-4f1e666b8fe1" + "945d68a1-4b3d-4e6a-99d1-da5b65e933de" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161644Z:484421ff-7862-4395-9af1-4f1e666b8fe1" + "WESTCENTRALUS:20230216T184841Z:945d68a1-4b3d-4e6a-99d1-da5b65e933de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -546,10 +606,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:43 GMT" + "Thu, 16 Feb 2023 18:48:40 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -558,28 +618,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fc82323-5154-4985-a9f8-4fbd31d371b6" + "4ae313a1-bc62-4fe3-95f4-34320b2dda26" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -591,16 +651,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-request-id": [ - "7c2dbbe1-6c08-44f2-b8a2-a8d13bc8b611" + "444a70fd-8c19-4799-9e4e-69090d6644d4" ], "x-ms-correlation-request-id": [ - "7c2dbbe1-6c08-44f2-b8a2-a8d13bc8b611" + "444a70fd-8c19-4799-9e4e-69090d6644d4" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161644Z:7c2dbbe1-6c08-44f2-b8a2-a8d13bc8b611" + "WESTUS:20230216T184842Z:444a70fd-8c19-4799-9e4e-69090d6644d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -609,10 +669,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:44 GMT" + "Thu, 16 Feb 2023 18:48:41 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -621,28 +681,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "965ca7b3-f4d9-423a-a909-01f3f2fe0248" + "b94da1f4-4161-4423-9e0e-c44ef45bc093" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -654,16 +714,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-request-id": [ - "e7eea414-5b49-48f3-abd2-99a93f9fc879" + "c3c26715-02e6-4c7e-b9c4-3f826fac0eb1" ], "x-ms-correlation-request-id": [ - "e7eea414-5b49-48f3-abd2-99a93f9fc879" + "c3c26715-02e6-4c7e-b9c4-3f826fac0eb1" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161645Z:e7eea414-5b49-48f3-abd2-99a93f9fc879" + "WESTUS:20230216T184843Z:c3c26715-02e6-4c7e-b9c4-3f826fac0eb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,10 +732,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:45 GMT" + "Thu, 16 Feb 2023 18:48:42 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -684,28 +744,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9524b55-8502-4d5f-ab6c-d3e7bda01b0f" + "896d18b9-338a-4837-9676-479c12810954" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -717,16 +777,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-request-id": [ - "31712ef9-3dfb-47f8-8ece-50a1b1c8439b" + "872b7312-65c4-477f-a7f2-92abe3aae530" ], "x-ms-correlation-request-id": [ - "31712ef9-3dfb-47f8-8ece-50a1b1c8439b" + "872b7312-65c4-477f-a7f2-92abe3aae530" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161646Z:31712ef9-3dfb-47f8-8ece-50a1b1c8439b" + "WESTUS:20230216T184845Z:872b7312-65c4-477f-a7f2-92abe3aae530" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -735,10 +795,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:46 GMT" + "Thu, 16 Feb 2023 18:48:44 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -747,28 +807,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95a1c38d-49b5-47b5-9a96-45e778b80d6e" + "c03b88ce-bc4f-477a-988e-57770b54f24d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -780,16 +840,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-request-id": [ - "c0c9828c-51f4-4af6-97b8-88c1bd6b93c6" + "cca70519-c183-4e77-86e8-0b42cd775c25" ], "x-ms-correlation-request-id": [ - "c0c9828c-51f4-4af6-97b8-88c1bd6b93c6" + "cca70519-c183-4e77-86e8-0b42cd775c25" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161647Z:c0c9828c-51f4-4af6-97b8-88c1bd6b93c6" + "WESTUS:20230216T184846Z:cca70519-c183-4e77-86e8-0b42cd775c25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,10 +858,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:47 GMT" + "Thu, 16 Feb 2023 18:48:45 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -810,28 +870,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36786121-f56e-4213-89b3-4058dfb05440" + "0dae9f29-38eb-47e4-aca9-313a3d92a40e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -843,16 +903,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-request-id": [ - "b0792e0e-ca91-4f6f-bcb4-8215d303a6a9" + "c0ed2e68-833c-46d3-bba1-568c70e40b75" ], "x-ms-correlation-request-id": [ - "b0792e0e-ca91-4f6f-bcb4-8215d303a6a9" + "c0ed2e68-833c-46d3-bba1-568c70e40b75" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161649Z:b0792e0e-ca91-4f6f-bcb4-8215d303a6a9" + "WESTUS:20230216T184848Z:c0ed2e68-833c-46d3-bba1-568c70e40b75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -861,10 +921,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:49 GMT" + "Thu, 16 Feb 2023 18:48:47 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -873,28 +933,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d6dc198-99fd-43e5-b993-d0dde31f3828" + "4a2b0c61-b22e-42ab-91bf-f5d25628e17a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -906,16 +966,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "3fbc3f9d-4e8c-4203-99b0-87e683ab8b71" + "927b5c08-8906-4bca-aeaf-af52abb29166" ], "x-ms-correlation-request-id": [ - "3fbc3f9d-4e8c-4203-99b0-87e683ab8b71" + "927b5c08-8906-4bca-aeaf-af52abb29166" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161650Z:3fbc3f9d-4e8c-4203-99b0-87e683ab8b71" + "WESTUS:20230216T184849Z:927b5c08-8906-4bca-aeaf-af52abb29166" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -924,10 +984,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:50 GMT" + "Thu, 16 Feb 2023 18:48:49 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -936,28 +996,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38bf6659-88a4-4b98-8297-9b1c09602696" + "fbc3466c-be02-4c21-ab39-3874107d9272" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -969,16 +1029,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-request-id": [ - "c499269e-f28d-405d-b0c8-c99e2d507de4" + "d59461eb-8c45-4884-ad0d-8b86b12bb719" ], "x-ms-correlation-request-id": [ - "c499269e-f28d-405d-b0c8-c99e2d507de4" + "d59461eb-8c45-4884-ad0d-8b86b12bb719" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161651Z:c499269e-f28d-405d-b0c8-c99e2d507de4" + "WESTUS:20230216T184851Z:d59461eb-8c45-4884-ad0d-8b86b12bb719" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -987,10 +1047,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:51 GMT" + "Thu, 16 Feb 2023 18:48:50 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -999,28 +1059,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24aa29a7-dee2-444b-b04b-42d54bbc081d" + "6fcfb036-2586-4813-abf5-5d5bb824dd14" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1032,16 +1092,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-request-id": [ - "44295b44-1529-4040-8fd2-63a71d22267e" + "6f390407-3c68-4f59-bb45-3f7299b63d4e" ], "x-ms-correlation-request-id": [ - "44295b44-1529-4040-8fd2-63a71d22267e" + "6f390407-3c68-4f59-bb45-3f7299b63d4e" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161653Z:44295b44-1529-4040-8fd2-63a71d22267e" + "WESTUS:20230216T184852Z:6f390407-3c68-4f59-bb45-3f7299b63d4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,10 +1110,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:52 GMT" + "Thu, 16 Feb 2023 18:48:52 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1062,28 +1122,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44d332f5-9803-47c8-bbb3-94bb92d708dc" + "821c0cc9-f146-414b-95d0-df0c5f90d444" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1095,16 +1155,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-request-id": [ - "9ade558c-93ff-49a2-b3b1-d5168e0a3df7" + "0d1e1215-213a-49de-94af-2de867e632f6" ], "x-ms-correlation-request-id": [ - "9ade558c-93ff-49a2-b3b1-d5168e0a3df7" + "0d1e1215-213a-49de-94af-2de867e632f6" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161654Z:9ade558c-93ff-49a2-b3b1-d5168e0a3df7" + "WESTUS:20230216T184854Z:0d1e1215-213a-49de-94af-2de867e632f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1113,10 +1173,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:54 GMT" + "Thu, 16 Feb 2023 18:48:54 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1125,28 +1185,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05180abb-5981-4101-b4e4-bbb082c5f22d" + "2cfe198d-004e-48ab-86df-d155cfc593f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1158,16 +1218,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11999" ], "x-ms-request-id": [ - "f2ace1c7-60a3-4658-8dd3-ebdb7a0c8c4b" + "c916bf04-9447-4086-ab91-658d0cf4cb73" ], "x-ms-correlation-request-id": [ - "f2ace1c7-60a3-4658-8dd3-ebdb7a0c8c4b" + "c916bf04-9447-4086-ab91-658d0cf4cb73" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161655Z:f2ace1c7-60a3-4658-8dd3-ebdb7a0c8c4b" + "WESTUS:20230216T184855Z:c916bf04-9447-4086-ab91-658d0cf4cb73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1176,10 +1236,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:55 GMT" + "Thu, 16 Feb 2023 18:48:55 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1188,28 +1248,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da9fa1e8-a6d5-4227-bb74-34548a472fbf" + "3d7a8cb0-49fe-4fa0-90b6-2be48f2472d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1221,16 +1281,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11999" ], "x-ms-request-id": [ - "fe9db460-7fa8-4a2d-b8c2-fd7af822993b" + "3418683a-c55f-47d7-b99a-6e415fad2f38" ], "x-ms-correlation-request-id": [ - "fe9db460-7fa8-4a2d-b8c2-fd7af822993b" + "3418683a-c55f-47d7-b99a-6e415fad2f38" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161711Z:fe9db460-7fa8-4a2d-b8c2-fd7af822993b" + "WESTUS:20230216T184912Z:3418683a-c55f-47d7-b99a-6e415fad2f38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1239,10 +1299,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:11 GMT" + "Thu, 16 Feb 2023 18:49:11 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1251,28 +1311,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50084f23-a813-4966-be2c-732f03361810" + "1fcfa3d5-256b-469a-9add-3cc6620a8ccb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1284,16 +1344,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11999" ], "x-ms-request-id": [ - "9c38438e-71aa-45f1-87a7-8dad2215effe" + "6b1a7a1d-82b3-406e-aae5-da65c09ee45c" ], "x-ms-correlation-request-id": [ - "9c38438e-71aa-45f1-87a7-8dad2215effe" + "6b1a7a1d-82b3-406e-aae5-da65c09ee45c" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161713Z:9c38438e-71aa-45f1-87a7-8dad2215effe" + "WESTUS:20230216T184913Z:6b1a7a1d-82b3-406e-aae5-da65c09ee45c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1302,10 +1362,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:12 GMT" + "Thu, 16 Feb 2023 18:49:13 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1314,28 +1374,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff3c5a55-220a-46c2-9710-d486c9885cb1" + "88deef06-c549-482f-a1e2-e2e36a8bfa2e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1347,16 +1407,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11999" ], "x-ms-request-id": [ - "44fdbfad-1185-4687-aff9-b67d789f9911" + "5a9dd317-e7dc-42e8-8b76-c16785a94848" ], "x-ms-correlation-request-id": [ - "44fdbfad-1185-4687-aff9-b67d789f9911" + "5a9dd317-e7dc-42e8-8b76-c16785a94848" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161714Z:44fdbfad-1185-4687-aff9-b67d789f9911" + "WESTUS:20230216T184915Z:5a9dd317-e7dc-42e8-8b76-c16785a94848" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1365,10 +1425,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:13 GMT" + "Thu, 16 Feb 2023 18:49:14 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1377,28 +1437,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b0b99e0-ca8f-40e5-a643-f46fd29329da" + "9eabca6f-75e7-4c9b-bfa1-e17dbb02d9cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1410,16 +1470,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11998" ], "x-ms-request-id": [ - "8e9a33e9-2667-41ce-8d1d-9e7512ab6df0" + "8eb398a3-af02-4fdf-89f6-2e62f8db49fb" ], "x-ms-correlation-request-id": [ - "8e9a33e9-2667-41ce-8d1d-9e7512ab6df0" + "8eb398a3-af02-4fdf-89f6-2e62f8db49fb" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161715Z:8e9a33e9-2667-41ce-8d1d-9e7512ab6df0" + "WESTUS:20230216T184916Z:8eb398a3-af02-4fdf-89f6-2e62f8db49fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1428,10 +1488,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:14 GMT" + "Thu, 16 Feb 2023 18:49:15 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1440,28 +1500,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b330e859-dd9c-485a-9656-c4cdfa95ddf7" + "a5296f4d-b6fd-4709-acb1-e4aaf54e447b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1473,16 +1533,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11999" ], "x-ms-request-id": [ - "7163a533-1c4a-43a8-a02f-7a1b98d2aff5" + "e11907d9-5f0e-4e13-b568-bf89d2416d58" ], "x-ms-correlation-request-id": [ - "7163a533-1c4a-43a8-a02f-7a1b98d2aff5" + "e11907d9-5f0e-4e13-b568-bf89d2416d58" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161716Z:7163a533-1c4a-43a8-a02f-7a1b98d2aff5" + "WESTUS:20230216T184918Z:e11907d9-5f0e-4e13-b568-bf89d2416d58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1491,10 +1551,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:15 GMT" + "Thu, 16 Feb 2023 18:49:17 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1503,28 +1563,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37c83b9a-bd48-4c22-b645-144b95924438" + "dbf8183d-a783-4729-9f6c-ceffcf626f41" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1536,16 +1596,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11999" ], "x-ms-request-id": [ - "cc31a464-5838-4518-8239-630778badc99" + "77328ffe-42cb-4532-9eab-904e3685a8e6" ], "x-ms-correlation-request-id": [ - "cc31a464-5838-4518-8239-630778badc99" + "77328ffe-42cb-4532-9eab-904e3685a8e6" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161717Z:cc31a464-5838-4518-8239-630778badc99" + "WESTCENTRALUS:20230216T184919Z:77328ffe-42cb-4532-9eab-904e3685a8e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,10 +1614,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:16 GMT" + "Thu, 16 Feb 2023 18:49:18 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1566,28 +1626,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "159187dc-21f5-44ae-9b14-16d23787f350" + "fb1ff06e-76cf-4b20-a8ce-a3e12b7189f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1599,16 +1659,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11999" ], "x-ms-request-id": [ - "bca8f431-5043-45dd-9849-53b8fb600227" + "8e11d2e7-fb62-4608-a654-bd52f03b327f" ], "x-ms-correlation-request-id": [ - "bca8f431-5043-45dd-9849-53b8fb600227" + "8e11d2e7-fb62-4608-a654-bd52f03b327f" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161728Z:bca8f431-5043-45dd-9849-53b8fb600227" + "WESTUS:20230216T184931Z:8e11d2e7-fb62-4608-a654-bd52f03b327f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1617,10 +1677,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:27 GMT" + "Thu, 16 Feb 2023 18:49:31 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1629,28 +1689,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "743484f0-e87e-46d7-8cbb-360bd70ccd8a" + "877731e0-d1ff-421f-83a8-bb2e19161796" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1662,16 +1722,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11999" ], "x-ms-request-id": [ - "cb6af3aa-f061-4a81-b609-20c53a5ee8fc" + "c4b73880-4b95-4ed4-b4d4-de60d18532db" ], "x-ms-correlation-request-id": [ - "cb6af3aa-f061-4a81-b609-20c53a5ee8fc" + "c4b73880-4b95-4ed4-b4d4-de60d18532db" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161729Z:cb6af3aa-f061-4a81-b609-20c53a5ee8fc" + "WESTUS:20230216T184933Z:c4b73880-4b95-4ed4-b4d4-de60d18532db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1680,10 +1740,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:29 GMT" + "Thu, 16 Feb 2023 18:49:32 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1692,28 +1752,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd37e7d-9b5f-4242-87f9-7f685a0f3c86" + "df7e8433-b946-4a1d-8423-ecec0f32d235" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1725,16 +1785,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11999" ], "x-ms-request-id": [ - "c294524f-be18-4905-9a9c-a26f0c5150f9" + "b5ff36f4-7f97-4eb3-8e25-fb33c89f7c02" ], "x-ms-correlation-request-id": [ - "c294524f-be18-4905-9a9c-a26f0c5150f9" + "b5ff36f4-7f97-4eb3-8e25-fb33c89f7c02" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161730Z:c294524f-be18-4905-9a9c-a26f0c5150f9" + "WESTUS:20230216T184935Z:b5ff36f4-7f97-4eb3-8e25-fb33c89f7c02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1743,10 +1803,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:30 GMT" + "Thu, 16 Feb 2023 18:49:34 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1755,28 +1815,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03d604ee-6588-4cba-bdf3-b6102ecd735d" + "72e45dcf-31f8-4090-b134-1d7429c16cb4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1788,16 +1848,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11999" ], "x-ms-request-id": [ - "c27e2c87-26bd-4fa5-a30a-ffa9a2fcf0d3" + "61ce0383-fac9-4194-8f7c-714f3ca8f9ad" ], "x-ms-correlation-request-id": [ - "c27e2c87-26bd-4fa5-a30a-ffa9a2fcf0d3" + "61ce0383-fac9-4194-8f7c-714f3ca8f9ad" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161731Z:c27e2c87-26bd-4fa5-a30a-ffa9a2fcf0d3" + "WESTUS:20230216T184936Z:61ce0383-fac9-4194-8f7c-714f3ca8f9ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1806,10 +1866,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:31 GMT" + "Thu, 16 Feb 2023 18:49:36 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1818,28 +1878,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6ec6cbf-91fd-4bfe-b080-02846a250420" + "97712f16-0d77-4531-a096-ae8ec3ef9cca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1851,16 +1911,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11999" ], "x-ms-request-id": [ - "0087d801-200e-420b-86fd-70e7b9c37d82" + "8230ff36-01ee-4b92-87d7-b330063b3ffd" ], "x-ms-correlation-request-id": [ - "0087d801-200e-420b-86fd-70e7b9c37d82" + "8230ff36-01ee-4b92-87d7-b330063b3ffd" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161732Z:0087d801-200e-420b-86fd-70e7b9c37d82" + "WESTUS:20230216T184937Z:8230ff36-01ee-4b92-87d7-b330063b3ffd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1869,10 +1929,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:32 GMT" + "Thu, 16 Feb 2023 18:49:37 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1881,28 +1941,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36ae4f72-7ca9-42e2-ab9a-1322fa9da918" + "da8ecac2-2431-41ef-b22d-7216be2c2269" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1914,16 +1974,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11998" ], "x-ms-request-id": [ - "6982411d-c729-4d33-aaf6-95c369a9c426" + "79b82b67-2f88-437a-b302-4261b028253e" ], "x-ms-correlation-request-id": [ - "6982411d-c729-4d33-aaf6-95c369a9c426" + "79b82b67-2f88-437a-b302-4261b028253e" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161734Z:6982411d-c729-4d33-aaf6-95c369a9c426" + "WESTUS:20230216T184939Z:79b82b67-2f88-437a-b302-4261b028253e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1932,10 +1992,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:33 GMT" + "Thu, 16 Feb 2023 18:49:38 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1944,28 +2004,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88fb1e50-00fd-49bd-9f96-f9d97f0234ec" + "1097e504-25d8-43cf-af02-14f7232841ea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1977,16 +2037,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11999" ], "x-ms-request-id": [ - "f7d162d5-352a-4414-a036-ce733cc74f22" + "adc18c20-7086-4d61-b408-5870a39b922d" ], "x-ms-correlation-request-id": [ - "f7d162d5-352a-4414-a036-ce733cc74f22" + "adc18c20-7086-4d61-b408-5870a39b922d" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161735Z:f7d162d5-352a-4414-a036-ce733cc74f22" + "WESTUS:20230216T184940Z:adc18c20-7086-4d61-b408-5870a39b922d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1995,10 +2055,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:34 GMT" + "Thu, 16 Feb 2023 18:49:40 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2007,28 +2067,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e299dbe9-3551-4fa7-9226-e0bbc0e9fef8" + "11e8f625-f665-427e-8bcb-1d55ddf192cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2040,16 +2100,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11998" ], "x-ms-request-id": [ - "0a840e9d-46e8-4bd2-b5a9-beb1c4fdbed5" + "3e02ab71-6f78-474f-9831-ba50bb128f86" ], "x-ms-correlation-request-id": [ - "0a840e9d-46e8-4bd2-b5a9-beb1c4fdbed5" + "3e02ab71-6f78-474f-9831-ba50bb128f86" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161736Z:0a840e9d-46e8-4bd2-b5a9-beb1c4fdbed5" + "WESTCENTRALUS:20230216T184942Z:3e02ab71-6f78-474f-9831-ba50bb128f86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2058,10 +2118,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:35 GMT" + "Thu, 16 Feb 2023 18:49:42 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2070,28 +2130,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2f832d2-3b82-441c-9aed-d9f28a3549c3" + "55a740bb-3b2d-4501-aa99-ab9902a1e39c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2103,16 +2163,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11999" ], "x-ms-request-id": [ - "08199cef-5313-4a64-8366-f70d8bc38791" + "dc0dbe4e-11e2-4ae4-9262-3dc7b4d94512" ], "x-ms-correlation-request-id": [ - "08199cef-5313-4a64-8366-f70d8bc38791" + "dc0dbe4e-11e2-4ae4-9262-3dc7b4d94512" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161737Z:08199cef-5313-4a64-8366-f70d8bc38791" + "WESTCENTRALUS:20230216T184944Z:dc0dbe4e-11e2-4ae4-9262-3dc7b4d94512" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2121,10 +2181,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:36 GMT" + "Thu, 16 Feb 2023 18:49:43 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2133,28 +2193,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d764a67b-7ee2-497f-8647-77b2c2cb4f93" + "4e5f87f8-ded0-4950-9039-d6df3cb3f4d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2166,16 +2226,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11999" ], "x-ms-request-id": [ - "40f5df8d-9db2-48ae-be12-4eb2a6469372" + "81196b9c-c263-4006-a2a7-977ee8dd9459" ], "x-ms-correlation-request-id": [ - "40f5df8d-9db2-48ae-be12-4eb2a6469372" + "81196b9c-c263-4006-a2a7-977ee8dd9459" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161753Z:40f5df8d-9db2-48ae-be12-4eb2a6469372" + "WESTCENTRALUS:20230216T185001Z:81196b9c-c263-4006-a2a7-977ee8dd9459" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2184,10 +2244,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:52 GMT" + "Thu, 16 Feb 2023 18:50:01 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2196,28 +2256,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08a265b6-0432-497d-be0e-21c85893983d" + "b5e8e847-42d3-4169-9eca-41b1cc1c042d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2229,16 +2289,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11998" ], "x-ms-request-id": [ - "23d79f83-bb71-4ced-af66-b26cfb663dff" + "8493a21f-62f4-4496-9b97-34028fa28ceb" ], "x-ms-correlation-request-id": [ - "23d79f83-bb71-4ced-af66-b26cfb663dff" + "8493a21f-62f4-4496-9b97-34028fa28ceb" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161755Z:23d79f83-bb71-4ced-af66-b26cfb663dff" + "WESTCENTRALUS:20230216T185004Z:8493a21f-62f4-4496-9b97-34028fa28ceb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2247,10 +2307,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:54 GMT" + "Thu, 16 Feb 2023 18:50:03 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2259,28 +2319,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93ac33b8-82c7-4bb7-a1d9-a3727e5a16a9" + "35045ad9-c88e-4485-8c0f-330ad0fe9874" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2292,16 +2352,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11999" ], "x-ms-request-id": [ - "80cc8f08-a6f5-46dd-bdd0-c934799700d3" + "4df8c5bb-00f9-416e-97ad-552e9da4df2f" ], "x-ms-correlation-request-id": [ - "80cc8f08-a6f5-46dd-bdd0-c934799700d3" + "4df8c5bb-00f9-416e-97ad-552e9da4df2f" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161756Z:80cc8f08-a6f5-46dd-bdd0-c934799700d3" + "WESTCENTRALUS:20230216T185006Z:4df8c5bb-00f9-416e-97ad-552e9da4df2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2310,10 +2370,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:56 GMT" + "Thu, 16 Feb 2023 18:50:06 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2322,28 +2382,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4bb30a3-81d3-4335-885d-57603c0771dc" + "5c8b637f-144e-4e87-a8e9-3f1a469d0244" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2355,16 +2415,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11999" ], "x-ms-request-id": [ - "5cc27d0a-561c-4cc8-8f1e-3e31d26ffe09" + "5fc4dda6-9116-4789-b494-ffb286033be4" ], "x-ms-correlation-request-id": [ - "5cc27d0a-561c-4cc8-8f1e-3e31d26ffe09" + "5fc4dda6-9116-4789-b494-ffb286033be4" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161758Z:5cc27d0a-561c-4cc8-8f1e-3e31d26ffe09" + "WESTCENTRALUS:20230216T185008Z:5fc4dda6-9116-4789-b494-ffb286033be4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2373,10 +2433,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:57 GMT" + "Thu, 16 Feb 2023 18:50:08 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2385,28 +2445,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35159182-88a4-4430-a636-4fae1ddc8951" + "6e25f2fc-e588-4957-87de-47f817275fea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2418,16 +2478,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11999" ], "x-ms-request-id": [ - "1ecfef72-8bbd-4451-a8e8-aa77f420015c" + "330091c0-3809-4d35-83de-e3aed91462ac" ], "x-ms-correlation-request-id": [ - "1ecfef72-8bbd-4451-a8e8-aa77f420015c" + "330091c0-3809-4d35-83de-e3aed91462ac" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161759Z:1ecfef72-8bbd-4451-a8e8-aa77f420015c" + "WESTCENTRALUS:20230216T185010Z:330091c0-3809-4d35-83de-e3aed91462ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2436,10 +2496,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:58 GMT" + "Thu, 16 Feb 2023 18:50:09 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2448,28 +2508,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c2c0024-35ad-45b7-846c-b9969c0f017c" + "acb739ab-dbbe-4b97-aca0-32a17fd6ddaa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2481,16 +2541,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11998" ], "x-ms-request-id": [ - "72a4914d-2d37-4e33-88ad-8274386f526c" + "3384a7b1-00ba-40a6-882d-2b969e7e963e" ], "x-ms-correlation-request-id": [ - "72a4914d-2d37-4e33-88ad-8274386f526c" + "3384a7b1-00ba-40a6-882d-2b969e7e963e" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161800Z:72a4914d-2d37-4e33-88ad-8274386f526c" + "WESTCENTRALUS:20230216T185012Z:3384a7b1-00ba-40a6-882d-2b969e7e963e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2499,10 +2559,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:59 GMT" + "Thu, 16 Feb 2023 18:50:11 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2511,28 +2571,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTA/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzU/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5232a4f-78bc-4795-8c8b-d16baa805185" + "bfb4df81-9928-42f1-9e92-6966ec607d1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2544,16 +2604,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11997" ], "x-ms-request-id": [ - "c351d766-a7e7-4fb1-ad9c-5c9e93bad080" + "6c6d597a-1f2f-4e91-b51e-ff2780fe2c59" ], "x-ms-correlation-request-id": [ - "c351d766-a7e7-4fb1-ad9c-5c9e93bad080" + "6c6d597a-1f2f-4e91-b51e-ff2780fe2c59" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161816Z:c351d766-a7e7-4fb1-ad9c-5c9e93bad080" + "WESTCENTRALUS:20230216T185028Z:6c6d597a-1f2f-4e91-b51e-ff2780fe2c59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2562,10 +2622,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:18:15 GMT" + "Thu, 16 Feb 2023 18:50:28 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2574,28 +2634,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps4562\",\r\n \"etag\": \"AAAADFriXkA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps4190.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps4190\",\r\n \"endpoint\": \"sb://iothub-ns-ps4190-15425523-02e108a91d.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075\",\r\n \"name\": \"ps3075\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2081\",\r\n \"etag\": \"AAAADHxV7cA=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps3075.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps3075\",\r\n \"endpoint\": \"sb://iothub-ns-ps3075-24619187-218f7a742a.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:46:07.71Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/IotHubKeys/iothubowner/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/IotHubKeys/iothubowner/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDIxLTA3LTAy", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fc82323-5154-4985-a9f8-4fbd31d371b6" + "4ae313a1-bc62-4fe3-95f4-34320b2dda26" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2610,13 +2670,13 @@ "1199" ], "x-ms-request-id": [ - "424c04af-9c87-420d-bbcd-ffc328fb979a" + "c81a9c6d-4a7d-4ae6-bcf8-b94c52773400" ], "x-ms-correlation-request-id": [ - "424c04af-9c87-420d-bbcd-ffc328fb979a" + "c81a9c6d-4a7d-4ae6-bcf8-b94c52773400" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161644Z:424c04af-9c87-420d-bbcd-ffc328fb979a" + "WESTUS:20230216T184842Z:c81a9c6d-4a7d-4ae6-bcf8-b94c52773400" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2625,7 +2685,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:44 GMT" + "Thu, 16 Feb 2023 18:48:42 GMT" ], "Content-Length": [ "203" @@ -2637,28 +2697,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "965ca7b3-f4d9-423a-a909-01f3f2fe0248" + "b94da1f4-4161-4423-9e0e-c44ef45bc093" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2670,16 +2730,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "a7a4c292-fd4d-44ec-bcc9-d948cd35e6f8" + "1a407cdf-a45f-4bd5-9a56-6416bccf1270" ], "x-ms-correlation-request-id": [ - "a7a4c292-fd4d-44ec-bcc9-d948cd35e6f8" + "1a407cdf-a45f-4bd5-9a56-6416bccf1270" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161645Z:a7a4c292-fd4d-44ec-bcc9-d948cd35e6f8" + "WESTUS:20230216T184843Z:1a407cdf-a45f-4bd5-9a56-6416bccf1270" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2688,7 +2748,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:45 GMT" + "Thu, 16 Feb 2023 18:48:43 GMT" ], "Content-Length": [ "905" @@ -2700,28 +2760,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9524b55-8502-4d5f-ab6c-d3e7bda01b0f" + "896d18b9-338a-4837-9676-479c12810954" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2733,16 +2793,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "3f70c218-aad8-4d1f-bba8-0dc6ee753729" + "665d55a4-9bcf-4d88-ba7e-8174b06ecd29" ], "x-ms-correlation-request-id": [ - "3f70c218-aad8-4d1f-bba8-0dc6ee753729" + "665d55a4-9bcf-4d88-ba7e-8174b06ecd29" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161647Z:3f70c218-aad8-4d1f-bba8-0dc6ee753729" + "WESTUS:20230216T184845Z:665d55a4-9bcf-4d88-ba7e-8174b06ecd29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2751,7 +2811,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:46 GMT" + "Thu, 16 Feb 2023 18:48:44 GMT" ], "Content-Length": [ "905" @@ -2763,28 +2823,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95a1c38d-49b5-47b5-9a96-45e778b80d6e" + "c03b88ce-bc4f-477a-988e-57770b54f24d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2796,16 +2856,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "ef5d3904-173a-453f-8ba4-9aa8d3da2b87" + "9dfdda54-f15b-4850-95ae-f5658b6eea78" ], "x-ms-correlation-request-id": [ - "ef5d3904-173a-453f-8ba4-9aa8d3da2b87" + "9dfdda54-f15b-4850-95ae-f5658b6eea78" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161648Z:ef5d3904-173a-453f-8ba4-9aa8d3da2b87" + "WESTUS:20230216T184846Z:9dfdda54-f15b-4850-95ae-f5658b6eea78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2814,7 +2874,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:47 GMT" + "Thu, 16 Feb 2023 18:48:45 GMT" ], "Content-Length": [ "905" @@ -2826,28 +2886,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36786121-f56e-4213-89b3-4058dfb05440" + "0dae9f29-38eb-47e4-aca9-313a3d92a40e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2859,16 +2919,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "2da51eb7-e72f-4c78-9d3c-205fd1d85b34" + "6858f945-9af6-4f5e-b4a6-22ffd765097b" ], "x-ms-correlation-request-id": [ - "2da51eb7-e72f-4c78-9d3c-205fd1d85b34" + "6858f945-9af6-4f5e-b4a6-22ffd765097b" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161649Z:2da51eb7-e72f-4c78-9d3c-205fd1d85b34" + "WESTUS:20230216T184848Z:6858f945-9af6-4f5e-b4a6-22ffd765097b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2877,7 +2937,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:49 GMT" + "Thu, 16 Feb 2023 18:48:47 GMT" ], "Content-Length": [ "905" @@ -2889,28 +2949,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d6dc198-99fd-43e5-b993-d0dde31f3828" + "4a2b0c61-b22e-42ab-91bf-f5d25628e17a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2922,16 +2982,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-request-id": [ - "245c5660-911c-4dd6-ad79-6a8b76129a4a" + "a4f466c7-f564-48ff-90af-4ee45944ee0c" ], "x-ms-correlation-request-id": [ - "245c5660-911c-4dd6-ad79-6a8b76129a4a" + "a4f466c7-f564-48ff-90af-4ee45944ee0c" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161650Z:245c5660-911c-4dd6-ad79-6a8b76129a4a" + "WESTUS:20230216T184850Z:a4f466c7-f564-48ff-90af-4ee45944ee0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2940,7 +3000,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:50 GMT" + "Thu, 16 Feb 2023 18:48:49 GMT" ], "Content-Length": [ "905" @@ -2952,28 +3012,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38bf6659-88a4-4b98-8297-9b1c09602696" + "fbc3466c-be02-4c21-ab39-3874107d9272" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2985,16 +3045,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-request-id": [ - "b56686bf-6e5b-4db4-a726-1f1d53a654b6" + "c83b4219-2761-405d-9de3-88cb1b7502bd" ], "x-ms-correlation-request-id": [ - "b56686bf-6e5b-4db4-a726-1f1d53a654b6" + "c83b4219-2761-405d-9de3-88cb1b7502bd" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161652Z:b56686bf-6e5b-4db4-a726-1f1d53a654b6" + "WESTUS:20230216T184851Z:c83b4219-2761-405d-9de3-88cb1b7502bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3003,7 +3063,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:51 GMT" + "Thu, 16 Feb 2023 18:48:51 GMT" ], "Content-Length": [ "905" @@ -3015,28 +3075,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24aa29a7-dee2-444b-b04b-42d54bbc081d" + "6fcfb036-2586-4813-abf5-5d5bb824dd14" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3048,16 +3108,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-request-id": [ - "aa2ccaee-d2cb-4e47-afb1-b59fcbf12079" + "39a48cf7-a742-497e-9343-dce81ca3c8de" ], "x-ms-correlation-request-id": [ - "aa2ccaee-d2cb-4e47-afb1-b59fcbf12079" + "39a48cf7-a742-497e-9343-dce81ca3c8de" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161653Z:aa2ccaee-d2cb-4e47-afb1-b59fcbf12079" + "WESTUS:20230216T184852Z:39a48cf7-a742-497e-9343-dce81ca3c8de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3066,7 +3126,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:52 GMT" + "Thu, 16 Feb 2023 18:48:52 GMT" ], "Content-Length": [ "905" @@ -3078,28 +3138,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44d332f5-9803-47c8-bbb3-94bb92d708dc" + "821c0cc9-f146-414b-95d0-df0c5f90d444" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3111,16 +3171,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-request-id": [ - "bcb40bff-6248-421a-b7ce-773eea215e19" + "928237ae-8137-46ea-a5d8-870ea5ebbc1f" ], "x-ms-correlation-request-id": [ - "bcb40bff-6248-421a-b7ce-773eea215e19" + "928237ae-8137-46ea-a5d8-870ea5ebbc1f" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161655Z:bcb40bff-6248-421a-b7ce-773eea215e19" + "WESTUS:20230216T184854Z:928237ae-8137-46ea-a5d8-870ea5ebbc1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3129,7 +3189,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:54 GMT" + "Thu, 16 Feb 2023 18:48:54 GMT" ], "Content-Length": [ "905" @@ -3141,28 +3201,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05180abb-5981-4101-b4e4-bbb082c5f22d" + "2cfe198d-004e-48ab-86df-d155cfc593f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3174,16 +3234,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-request-id": [ - "78817fd0-e9c0-486d-8cf8-d27ac3be66fb" + "ef02717a-4249-4446-bcb2-32e787d0c3fd" ], "x-ms-correlation-request-id": [ - "78817fd0-e9c0-486d-8cf8-d27ac3be66fb" + "ef02717a-4249-4446-bcb2-32e787d0c3fd" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161656Z:78817fd0-e9c0-486d-8cf8-d27ac3be66fb" + "WESTUS:20230216T184856Z:ef02717a-4249-4446-bcb2-32e787d0c3fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3192,7 +3252,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:16:55 GMT" + "Thu, 16 Feb 2023 18:48:55 GMT" ], "Content-Length": [ "905" @@ -3204,28 +3264,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da9fa1e8-a6d5-4227-bb74-34548a472fbf" + "3d7a8cb0-49fe-4fa0-90b6-2be48f2472d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3237,16 +3297,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-request-id": [ - "c16c9d47-adec-4353-81db-82d68df0cbcf" + "762b97f0-9868-4387-952e-ff4ca126855e" ], "x-ms-correlation-request-id": [ - "c16c9d47-adec-4353-81db-82d68df0cbcf" + "762b97f0-9868-4387-952e-ff4ca126855e" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161712Z:c16c9d47-adec-4353-81db-82d68df0cbcf" + "WESTUS:20230216T184912Z:762b97f0-9868-4387-952e-ff4ca126855e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3255,7 +3315,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:11 GMT" + "Thu, 16 Feb 2023 18:49:11 GMT" ], "Content-Length": [ "905" @@ -3267,28 +3327,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50084f23-a813-4966-be2c-732f03361810" + "1fcfa3d5-256b-469a-9add-3cc6620a8ccb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3300,16 +3360,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1199" ], "x-ms-request-id": [ - "162af50f-3e3f-492a-85bc-280574423500" + "4bdcccba-c23d-4743-8162-b3f223333036" ], "x-ms-correlation-request-id": [ - "162af50f-3e3f-492a-85bc-280574423500" + "4bdcccba-c23d-4743-8162-b3f223333036" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161713Z:162af50f-3e3f-492a-85bc-280574423500" + "WESTUS:20230216T184914Z:4bdcccba-c23d-4743-8162-b3f223333036" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3318,7 +3378,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:12 GMT" + "Thu, 16 Feb 2023 18:49:13 GMT" ], "Content-Length": [ "905" @@ -3330,28 +3390,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff3c5a55-220a-46c2-9710-d486c9885cb1" + "88deef06-c549-482f-a1e2-e2e36a8bfa2e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3363,16 +3423,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1199" ], "x-ms-request-id": [ - "fd0760fb-84ad-410d-8141-0efc65e36357" + "63fe0558-fe22-4e19-b516-83a01808ffec" ], "x-ms-correlation-request-id": [ - "fd0760fb-84ad-410d-8141-0efc65e36357" + "63fe0558-fe22-4e19-b516-83a01808ffec" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161714Z:fd0760fb-84ad-410d-8141-0efc65e36357" + "WESTUS:20230216T184915Z:63fe0558-fe22-4e19-b516-83a01808ffec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3381,7 +3441,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:13 GMT" + "Thu, 16 Feb 2023 18:49:15 GMT" ], "Content-Length": [ "905" @@ -3393,28 +3453,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b0b99e0-ca8f-40e5-a643-f46fd29329da" + "9eabca6f-75e7-4c9b-bfa1-e17dbb02d9cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3426,16 +3486,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1198" ], "x-ms-request-id": [ - "5261eae4-e530-44ef-9ae4-0a1c8a8adc79" + "65d84471-251b-4ee0-9d76-691f0dc080f8" ], "x-ms-correlation-request-id": [ - "5261eae4-e530-44ef-9ae4-0a1c8a8adc79" + "65d84471-251b-4ee0-9d76-691f0dc080f8" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161715Z:5261eae4-e530-44ef-9ae4-0a1c8a8adc79" + "WESTUS:20230216T184916Z:65d84471-251b-4ee0-9d76-691f0dc080f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3444,7 +3504,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:14 GMT" + "Thu, 16 Feb 2023 18:49:16 GMT" ], "Content-Length": [ "905" @@ -3456,28 +3516,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b330e859-dd9c-485a-9656-c4cdfa95ddf7" + "a5296f4d-b6fd-4709-acb1-e4aaf54e447b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3489,16 +3549,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1199" ], "x-ms-request-id": [ - "e2efd888-189c-4c2e-acc2-47fbfe41dfc6" + "39a7fa49-fa47-4a34-839f-cc9755b3c404" ], "x-ms-correlation-request-id": [ - "e2efd888-189c-4c2e-acc2-47fbfe41dfc6" + "39a7fa49-fa47-4a34-839f-cc9755b3c404" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161716Z:e2efd888-189c-4c2e-acc2-47fbfe41dfc6" + "WESTUS:20230216T184918Z:39a7fa49-fa47-4a34-839f-cc9755b3c404" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3507,7 +3567,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:15 GMT" + "Thu, 16 Feb 2023 18:49:17 GMT" ], "Content-Length": [ "905" @@ -3519,28 +3579,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37c83b9a-bd48-4c22-b645-144b95924438" + "dbf8183d-a783-4729-9f6c-ceffcf626f41" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3552,16 +3612,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1199" ], "x-ms-request-id": [ - "da19b3f7-476f-49ec-bb90-c4c4c1be1e63" + "83a131bd-cbc0-4ecc-8e24-da1e6dc4cf9c" ], "x-ms-correlation-request-id": [ - "da19b3f7-476f-49ec-bb90-c4c4c1be1e63" + "83a131bd-cbc0-4ecc-8e24-da1e6dc4cf9c" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161717Z:da19b3f7-476f-49ec-bb90-c4c4c1be1e63" + "WESTCENTRALUS:20230216T184920Z:83a131bd-cbc0-4ecc-8e24-da1e6dc4cf9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3570,7 +3630,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:17 GMT" + "Thu, 16 Feb 2023 18:49:19 GMT" ], "Content-Length": [ "905" @@ -3582,28 +3642,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "159187dc-21f5-44ae-9b14-16d23787f350" + "fb1ff06e-76cf-4b20-a8ce-a3e12b7189f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3615,16 +3675,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1199" ], "x-ms-request-id": [ - "06afd90c-4660-4f0a-be09-2a7814901ec8" + "9373230b-9b85-4dbf-8164-67286fdce4a2" ], "x-ms-correlation-request-id": [ - "06afd90c-4660-4f0a-be09-2a7814901ec8" + "9373230b-9b85-4dbf-8164-67286fdce4a2" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161728Z:06afd90c-4660-4f0a-be09-2a7814901ec8" + "WESTUS:20230216T184931Z:9373230b-9b85-4dbf-8164-67286fdce4a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3633,7 +3693,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:28 GMT" + "Thu, 16 Feb 2023 18:49:31 GMT" ], "Content-Length": [ "905" @@ -3645,28 +3705,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "743484f0-e87e-46d7-8cbb-360bd70ccd8a" + "877731e0-d1ff-421f-83a8-bb2e19161796" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3678,16 +3738,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1199" ], "x-ms-request-id": [ - "1becfe34-aa08-4e5d-a5e2-9903e9778dc8" + "7b4930e8-196f-4d71-a8f7-fbfad8f14616" ], "x-ms-correlation-request-id": [ - "1becfe34-aa08-4e5d-a5e2-9903e9778dc8" + "7b4930e8-196f-4d71-a8f7-fbfad8f14616" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161729Z:1becfe34-aa08-4e5d-a5e2-9903e9778dc8" + "WESTUS:20230216T184933Z:7b4930e8-196f-4d71-a8f7-fbfad8f14616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3696,7 +3756,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:29 GMT" + "Thu, 16 Feb 2023 18:49:33 GMT" ], "Content-Length": [ "905" @@ -3708,28 +3768,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bd37e7d-9b5f-4242-87f9-7f685a0f3c86" + "df7e8433-b946-4a1d-8423-ecec0f32d235" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3741,16 +3801,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1199" ], "x-ms-request-id": [ - "d375aeda-98ac-4b64-ad91-d992217ff7b0" + "6a5bb608-3314-4bd4-ba51-3a2cbe97ebf9" ], "x-ms-correlation-request-id": [ - "d375aeda-98ac-4b64-ad91-d992217ff7b0" + "6a5bb608-3314-4bd4-ba51-3a2cbe97ebf9" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161731Z:d375aeda-98ac-4b64-ad91-d992217ff7b0" + "WESTUS:20230216T184935Z:6a5bb608-3314-4bd4-ba51-3a2cbe97ebf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3759,7 +3819,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:30 GMT" + "Thu, 16 Feb 2023 18:49:34 GMT" ], "Content-Length": [ "905" @@ -3771,28 +3831,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03d604ee-6588-4cba-bdf3-b6102ecd735d" + "72e45dcf-31f8-4090-b134-1d7429c16cb4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3804,16 +3864,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1199" ], "x-ms-request-id": [ - "0db5d471-223f-49fa-8066-806a381808d2" + "d3e04ab1-e4be-457f-8305-8c3c782b7534" ], "x-ms-correlation-request-id": [ - "0db5d471-223f-49fa-8066-806a381808d2" + "d3e04ab1-e4be-457f-8305-8c3c782b7534" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161732Z:0db5d471-223f-49fa-8066-806a381808d2" + "WESTUS:20230216T184936Z:d3e04ab1-e4be-457f-8305-8c3c782b7534" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3822,7 +3882,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:31 GMT" + "Thu, 16 Feb 2023 18:49:36 GMT" ], "Content-Length": [ "905" @@ -3834,28 +3894,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6ec6cbf-91fd-4bfe-b080-02846a250420" + "97712f16-0d77-4531-a096-ae8ec3ef9cca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3867,16 +3927,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1199" ], "x-ms-request-id": [ - "ad8af59d-19ce-4ad3-8869-c70464970ca3" + "b97963d8-51aa-49a8-865c-c1ec7194532e" ], "x-ms-correlation-request-id": [ - "ad8af59d-19ce-4ad3-8869-c70464970ca3" + "b97963d8-51aa-49a8-865c-c1ec7194532e" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161733Z:ad8af59d-19ce-4ad3-8869-c70464970ca3" + "WESTUS:20230216T184938Z:b97963d8-51aa-49a8-865c-c1ec7194532e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3885,7 +3945,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:32 GMT" + "Thu, 16 Feb 2023 18:49:37 GMT" ], "Content-Length": [ "905" @@ -3897,28 +3957,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36ae4f72-7ca9-42e2-ab9a-1322fa9da918" + "da8ecac2-2431-41ef-b22d-7216be2c2269" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3930,16 +3990,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1198" ], "x-ms-request-id": [ - "9e1b8190-80c5-43ef-97a4-3fe53c269b8d" + "b747d0b9-624a-42cb-8557-2bc2ed19b427" ], "x-ms-correlation-request-id": [ - "9e1b8190-80c5-43ef-97a4-3fe53c269b8d" + "b747d0b9-624a-42cb-8557-2bc2ed19b427" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161734Z:9e1b8190-80c5-43ef-97a4-3fe53c269b8d" + "WESTUS:20230216T184939Z:b747d0b9-624a-42cb-8557-2bc2ed19b427" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3948,7 +4008,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:33 GMT" + "Thu, 16 Feb 2023 18:49:39 GMT" ], "Content-Length": [ "905" @@ -3960,28 +4020,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88fb1e50-00fd-49bd-9f96-f9d97f0234ec" + "1097e504-25d8-43cf-af02-14f7232841ea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3993,16 +4053,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1199" ], "x-ms-request-id": [ - "fa70f40b-6b64-48f6-9e78-a5866fb91b87" + "24cff40b-a5fb-4219-b553-c087c1ddbba3" ], "x-ms-correlation-request-id": [ - "fa70f40b-6b64-48f6-9e78-a5866fb91b87" + "24cff40b-a5fb-4219-b553-c087c1ddbba3" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161735Z:fa70f40b-6b64-48f6-9e78-a5866fb91b87" + "WESTUS:20230216T184941Z:24cff40b-a5fb-4219-b553-c087c1ddbba3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4011,7 +4071,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:34 GMT" + "Thu, 16 Feb 2023 18:49:40 GMT" ], "Content-Length": [ "905" @@ -4023,28 +4083,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e299dbe9-3551-4fa7-9226-e0bbc0e9fef8" + "11e8f625-f665-427e-8bcb-1d55ddf192cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4056,16 +4116,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "1198" ], "x-ms-request-id": [ - "499fa06c-a538-42c2-8ffe-bb578ab779d0" + "d78796b0-ee66-4c81-878e-b9f6f6125c47" ], "x-ms-correlation-request-id": [ - "499fa06c-a538-42c2-8ffe-bb578ab779d0" + "d78796b0-ee66-4c81-878e-b9f6f6125c47" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161736Z:499fa06c-a538-42c2-8ffe-bb578ab779d0" + "WESTCENTRALUS:20230216T184942Z:d78796b0-ee66-4c81-878e-b9f6f6125c47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4074,7 +4134,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:35 GMT" + "Thu, 16 Feb 2023 18:49:42 GMT" ], "Content-Length": [ "905" @@ -4086,28 +4146,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2f832d2-3b82-441c-9aed-d9f28a3549c3" + "55a740bb-3b2d-4501-aa99-ab9902a1e39c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4119,16 +4179,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1199" ], "x-ms-request-id": [ - "b0fbff33-67b7-4c3b-b7d5-30a0bfb56394" + "45507e2d-e7c4-4450-9545-90a8ab8d18a0" ], "x-ms-correlation-request-id": [ - "b0fbff33-67b7-4c3b-b7d5-30a0bfb56394" + "45507e2d-e7c4-4450-9545-90a8ab8d18a0" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161737Z:b0fbff33-67b7-4c3b-b7d5-30a0bfb56394" + "WESTCENTRALUS:20230216T184944Z:45507e2d-e7c4-4450-9545-90a8ab8d18a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4137,7 +4197,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:36 GMT" + "Thu, 16 Feb 2023 18:49:44 GMT" ], "Content-Length": [ "905" @@ -4149,28 +4209,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d764a67b-7ee2-497f-8647-77b2c2cb4f93" + "4e5f87f8-ded0-4950-9039-d6df3cb3f4d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4182,16 +4242,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1174" + "1199" ], "x-ms-request-id": [ - "19a2c273-8f80-404c-b5c6-9374d3bff7c4" + "fff80276-76a8-43bb-880c-d0c48952db23" ], "x-ms-correlation-request-id": [ - "19a2c273-8f80-404c-b5c6-9374d3bff7c4" + "fff80276-76a8-43bb-880c-d0c48952db23" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161753Z:19a2c273-8f80-404c-b5c6-9374d3bff7c4" + "WESTCENTRALUS:20230216T185001Z:fff80276-76a8-43bb-880c-d0c48952db23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4200,7 +4260,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:52 GMT" + "Thu, 16 Feb 2023 18:50:01 GMT" ], "Content-Length": [ "905" @@ -4212,28 +4272,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08a265b6-0432-497d-be0e-21c85893983d" + "b5e8e847-42d3-4169-9eca-41b1cc1c042d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4245,16 +4305,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1173" + "1198" ], "x-ms-request-id": [ - "3c471d1f-4cbf-483e-85a6-caad6962b737" + "03f7a82d-c45d-4dd2-83c8-c5d33c8a8062" ], "x-ms-correlation-request-id": [ - "3c471d1f-4cbf-483e-85a6-caad6962b737" + "03f7a82d-c45d-4dd2-83c8-c5d33c8a8062" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161755Z:3c471d1f-4cbf-483e-85a6-caad6962b737" + "WESTCENTRALUS:20230216T185004Z:03f7a82d-c45d-4dd2-83c8-c5d33c8a8062" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4263,7 +4323,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:54 GMT" + "Thu, 16 Feb 2023 18:50:03 GMT" ], "Content-Length": [ "905" @@ -4275,28 +4335,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93ac33b8-82c7-4bb7-a1d9-a3727e5a16a9" + "35045ad9-c88e-4485-8c0f-330ad0fe9874" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4308,16 +4368,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1172" + "1199" ], "x-ms-request-id": [ - "04000eac-6d1f-463b-b9e8-9a9c4f9d6605" + "cd19cff9-439b-46ac-bef3-0b96935473cb" ], "x-ms-correlation-request-id": [ - "04000eac-6d1f-463b-b9e8-9a9c4f9d6605" + "cd19cff9-439b-46ac-bef3-0b96935473cb" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161757Z:04000eac-6d1f-463b-b9e8-9a9c4f9d6605" + "WESTCENTRALUS:20230216T185006Z:cd19cff9-439b-46ac-bef3-0b96935473cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4326,7 +4386,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:56 GMT" + "Thu, 16 Feb 2023 18:50:06 GMT" ], "Content-Length": [ "905" @@ -4338,28 +4398,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4bb30a3-81d3-4335-885d-57603c0771dc" + "5c8b637f-144e-4e87-a8e9-3f1a469d0244" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4371,16 +4431,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1171" + "1199" ], "x-ms-request-id": [ - "1a7e37f1-7bfd-4b34-aaeb-bf88279bde3a" + "ff16bf8b-97bc-41b0-a04b-f2c166fcf04c" ], "x-ms-correlation-request-id": [ - "1a7e37f1-7bfd-4b34-aaeb-bf88279bde3a" + "ff16bf8b-97bc-41b0-a04b-f2c166fcf04c" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161758Z:1a7e37f1-7bfd-4b34-aaeb-bf88279bde3a" + "WESTCENTRALUS:20230216T185008Z:ff16bf8b-97bc-41b0-a04b-f2c166fcf04c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4389,7 +4449,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:57 GMT" + "Thu, 16 Feb 2023 18:50:08 GMT" ], "Content-Length": [ "905" @@ -4401,28 +4461,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35159182-88a4-4430-a636-4fae1ddc8951" + "6e25f2fc-e588-4957-87de-47f817275fea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4434,16 +4494,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1170" + "1199" ], "x-ms-request-id": [ - "519f891d-d1bb-42da-b7de-da395a7c49d7" + "8786a293-763f-41b4-977f-935898c3f984" ], "x-ms-correlation-request-id": [ - "519f891d-d1bb-42da-b7de-da395a7c49d7" + "8786a293-763f-41b4-977f-935898c3f984" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161759Z:519f891d-d1bb-42da-b7de-da395a7c49d7" + "WESTCENTRALUS:20230216T185010Z:8786a293-763f-41b4-977f-935898c3f984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4452,7 +4512,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:58 GMT" + "Thu, 16 Feb 2023 18:50:09 GMT" ], "Content-Length": [ "905" @@ -4464,28 +4524,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c2c0024-35ad-45b7-846c-b9969c0f017c" + "acb739ab-dbbe-4b97-aca0-32a17fd6ddaa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4497,16 +4557,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1169" + "1198" ], "x-ms-request-id": [ - "cbee3fba-f24a-432e-b9e9-d009425d02c8" + "0c48360c-0a7d-4a77-9d79-ffbcea9f5b47" ], "x-ms-correlation-request-id": [ - "cbee3fba-f24a-432e-b9e9-d009425d02c8" + "0c48360c-0a7d-4a77-9d79-ffbcea9f5b47" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161800Z:cbee3fba-f24a-432e-b9e9-d009425d02c8" + "WESTCENTRALUS:20230216T185012Z:0c48360c-0a7d-4a77-9d79-ffbcea9f5b47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4515,7 +4575,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:17:59 GMT" + "Thu, 16 Feb 2023 18:50:11 GMT" ], "Content-Length": [ "905" @@ -4527,28 +4587,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps4562/providers/Microsoft.Devices/IotHubs/ps4190/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNDU2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczQxOTAvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2081/providers/Microsoft.Devices/IotHubs/ps3075/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjA4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczMwNzUvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5232a4f-78bc-4795-8c8b-d16baa805185" + "bfb4df81-9928-42f1-9e92-6966ec607d1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4560,16 +4620,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1168" + "1197" ], "x-ms-request-id": [ - "3bbc40d7-c598-42de-bbba-ef87a27da6bb" + "627964f1-30b5-4a32-b824-673c37682fdc" ], "x-ms-correlation-request-id": [ - "3bbc40d7-c598-42de-bbba-ef87a27da6bb" + "627964f1-30b5-4a32-b824-673c37682fdc" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T161816Z:3bbc40d7-c598-42de-bbba-ef87a27da6bb" + "WESTCENTRALUS:20230216T185028Z:627964f1-30b5-4a32-b824-673c37682fdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4578,7 +4638,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:18:15 GMT" + "Thu, 16 Feb 2023 18:50:28 GMT" ], "Content-Length": [ "905" @@ -4590,20 +4650,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Kp/d9ZqXrIQkVKLXJdLS5WmkE+P2yFCvX7oVD5Zt/Js=\",\r\n \"secondaryKey\": \"TdZbqNYnTkMwvWvJiLlvHzOkSBpVL1crR+7d+3tds6s=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"DiPNWxrIqIWl9v5LkgihNFBv7uVxUreZxY4V7e3rtUU=\",\r\n \"secondaryKey\": \"EePl8hNu4ckqBWAN3NCkXoJdKQ5dDSkW9OvyasSLu5Y=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"bk9QqDv1J4Krmtj97+0ityQ9FMSy8OK9SP8jkQuz5R0=\",\r\n \"secondaryKey\": \"eahRs/7ouV4yMdnCYlD8JiUH0w7VsYo/5wMuJ8qyvpg=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"5PgL2znj1GH/H/+PXKgB4o9p5BrFrN1zfmGoJXm1vIQ=\",\r\n \"secondaryKey\": \"Q+XpWuf9JqFecgc77RJglnueB8SQjmkK8smjen6sTTs=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"K1I3xlSemQo+zSqjSYMxndtYnZcvnCoiheqPbtHPR6Y=\",\r\n \"secondaryKey\": \"r9DCiSOz/2Xgh0cTHxtS18BdRcFi+2nHkkPqisUZrqg=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "Test-AzureRmIotHubDeviceLifecycle": [ - "ps4190", - "ps4562", - "ps9041", - "ps3603", - "ps3066", - "ps7408", - "ps2371", - "ps905" + "ps3075", + "ps2081", + "ps4535", + "ps8387", + "ps9920", + "ps941", + "ps7510", + "ps2545" ] }, "Variables": { diff --git a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPModuleTests/TestAzureIotHubModuleLifecycle.json b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPModuleTests/TestAzureIotHubModuleLifecycle.json index 356c843f1997..a341d31a22b6 100644 --- a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPModuleTests/TestAzureIotHubModuleLifecycle.json +++ b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPModuleTests/TestAzureIotHubModuleLifecycle.json @@ -4,21 +4,21 @@ "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ea01361-8b3b-44ef-b65d-bdb5e26f5eaf" + "9dbdcc2a-f27b-4124-be17-7d6ad14c7528" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.47" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "e94c3d20-0c93-4119-ad73-082ba9ab3e95" + "3a9098c5-2de1-4441-9383-09fa7f881110" ], "x-ms-correlation-request-id": [ - "e94c3d20-0c93-4119-ad73-082ba9ab3e95" + "3a9098c5-2de1-4441-9383-09fa7f881110" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162047Z:e94c3d20-0c93-4119-ad73-082ba9ab3e95" + "WESTCENTRALUS:20230216T184011Z:3a9098c5-2de1-4441-9383-09fa7f881110" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:20:47 GMT" + "Thu, 16 Feb 2023 18:40:10 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,28 @@ "-1" ], "Content-Length": [ - "8553" + "9626" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"roleDefinitionId\": \"d04fc6c0-fc10-4ab8-b7de-c979247c3b65\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\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\": \"IotHubs/failover\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 3\",\r\n \"Germany West Central\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Germany North\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-02-01-preview\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-12-01-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 ],\r\n \"apiVersions\": [\r\n \"2021-02-01-preview\",\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/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"roleDefinitionId\": \"d04fc6c0-fc10-4ab8-b7de-c979247c3b65\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"provisioningServiceOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-09-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations/provisioningServiceOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway EAST\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\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\": \"IotHubs/failover\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"Australia Central\"\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps1663?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzMTY2Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps6153?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzNjE1Mz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "19d9ec34-1464-423f-8968-f28377a75a01" + "b31b2b56-44a4-4d4a-84b5-ad17749ed7b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.47" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -85,6 +84,7 @@ "29" ] }, + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "509c7431-5149-445f-8d73-94b855088dc5" + "c53fb23d-c489-4154-b334-057e5dcb689b" ], "x-ms-correlation-request-id": [ - "509c7431-5149-445f-8d73-94b855088dc5" + "c53fb23d-c489-4154-b334-057e5dcb689b" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162048Z:509c7431-5149-445f-8d73-94b855088dc5" + "WESTCENTRALUS:20230216T184012Z:c53fb23d-c489-4154-b334-057e5dcb689b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:20:47 GMT" + "Thu, 16 Feb 2023 18:40:11 GMT" ], "Content-Length": [ "165" @@ -123,26 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663\",\r\n \"name\": \"ps1663\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153\",\r\n \"name\": \"ps6153\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "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": [ - "a27f8bf3-bd8d-485b-960b-c082d1ef0525" + "5d1aae74-1666-48fd-9520-2e7bf2117fff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -151,6 +150,7 @@ "85" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfMTIyYTI5NzgtNjc0Ni00ZTQwLWI4MjAtZjI4YWI1MWMxM2M0O3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfMzQ4YjBiZTYtY2QxYy00MjcwLTgyZjYtYjk0ZWY2OWNiN2ZmO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "7dfd13cd-1cc4-45c2-b622-bac03f4aa46f" + "11c1ed3e-27f7-436b-8a35-8ea21e28bc59" ], "x-ms-correlation-request-id": [ - "7dfd13cd-1cc4-45c2-b622-bac03f4aa46f" + "11c1ed3e-27f7-436b-8a35-8ea21e28bc59" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162051Z:7dfd13cd-1cc4-45c2-b622-bac03f4aa46f" + "WESTCENTRALUS:20230216T184016Z:11c1ed3e-27f7-436b-8a35-8ea21e28bc59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,10 +183,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:20:51 GMT" + "Thu, 16 Feb 2023 18:40:16 GMT" ], "Content-Length": [ - "619" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,25 +195,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\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/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfMTIyYTI5NzgtNjc0Ni00ZTQwLWI4MjAtZjI4YWI1MWMxM2M0O3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTVRJeVlUSTVOemd0TmpjME5pMDBaVFF3TFdJNE1qQXRaakk0WVdJMU1XTXhNMk0wTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMC0wMy0wMSZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfMzQ4YjBiZTYtY2QxYy00MjcwLTgyZjYtYjk0ZWY2OWNiN2ZmO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTXpRNFlqQmlaVFl0WTJReFl5MDBNamN3TFRneVpqWXRZamswWldZMk9XTmlOMlptTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a27f8bf3-bd8d-485b-960b-c082d1ef0525" + "5d1aae74-1666-48fd-9520-2e7bf2117fff" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -228,13 +228,13 @@ "11999" ], "x-ms-request-id": [ - "4c1c8bef-def3-4591-8559-97251e8bc2c7" + "74be5395-01fd-4fd1-a7bf-6cf89805dd44" ], "x-ms-correlation-request-id": [ - "4c1c8bef-def3-4591-8559-97251e8bc2c7" + "74be5395-01fd-4fd1-a7bf-6cf89805dd44" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162121Z:4c1c8bef-def3-4591-8559-97251e8bc2c7" + "WESTCENTRALUS:20230216T184047Z:74be5395-01fd-4fd1-a7bf-6cf89805dd44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,7 +243,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:21:21 GMT" + "Thu, 16 Feb 2023 18:40:46 GMT" ], "Content-Length": [ "20" @@ -259,21 +259,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfMTIyYTI5NzgtNjc0Ni00ZTQwLWI4MjAtZjI4YWI1MWMxM2M0O3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTVRJeVlUSTVOemd0TmpjME5pMDBaVFF3TFdJNE1qQXRaakk0WVdJMU1XTXhNMk0wTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMC0wMy0wMSZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfMzQ4YjBiZTYtY2QxYy00MjcwLTgyZjYtYjk0ZWY2OWNiN2ZmO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTXpRNFlqQmlaVFl0WTJReFl5MDBNamN3TFRneVpqWXRZamswWldZMk9XTmlOMlptTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a27f8bf3-bd8d-485b-960b-c082d1ef0525" + "5d1aae74-1666-48fd-9520-2e7bf2117fff" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -288,13 +288,13 @@ "11998" ], "x-ms-request-id": [ - "f51c28a7-07bd-4a2f-8f89-9c5c57bcad85" + "586ae84b-10e9-4f9d-9879-4b7102bbf59d" ], "x-ms-correlation-request-id": [ - "f51c28a7-07bd-4a2f-8f89-9c5c57bcad85" + "586ae84b-10e9-4f9d-9879-4b7102bbf59d" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162151Z:f51c28a7-07bd-4a2f-8f89-9c5c57bcad85" + "WESTCENTRALUS:20230216T184117Z:586ae84b-10e9-4f9d-9879-4b7102bbf59d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +303,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:21:51 GMT" + "Thu, 16 Feb 2023 18:41:17 GMT" ], "Content-Length": [ "20" @@ -319,21 +319,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfMTIyYTI5NzgtNjc0Ni00ZTQwLWI4MjAtZjI4YWI1MWMxM2M0O3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTVRJeVlUSTVOemd0TmpjME5pMDBaVFF3TFdJNE1qQXRaakk0WVdJMU1XTXhNMk0wTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMC0wMy0wMSZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfMzQ4YjBiZTYtY2QxYy00MjcwLTgyZjYtYjk0ZWY2OWNiN2ZmO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTXpRNFlqQmlaVFl0WTJReFl5MDBNamN3TFRneVpqWXRZamswWldZMk9XTmlOMlptTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a27f8bf3-bd8d-485b-960b-c082d1ef0525" + "5d1aae74-1666-48fd-9520-2e7bf2117fff" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -348,13 +348,13 @@ "11997" ], "x-ms-request-id": [ - "d0c5972e-d722-46b1-854c-b89b16e15b06" + "3b2df0eb-8c24-4515-9397-43c6c0addef7" ], "x-ms-correlation-request-id": [ - "d0c5972e-d722-46b1-854c-b89b16e15b06" + "3b2df0eb-8c24-4515-9397-43c6c0addef7" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162221Z:d0c5972e-d722-46b1-854c-b89b16e15b06" + "WESTCENTRALUS:20230216T184147Z:3b2df0eb-8c24-4515-9397-43c6c0addef7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,7 +363,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:20 GMT" + "Thu, 16 Feb 2023 18:41:47 GMT" ], "Content-Length": [ "20" @@ -379,21 +379,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfMTIyYTI5NzgtNjc0Ni00ZTQwLWI4MjAtZjI4YWI1MWMxM2M0O3JlZ2lvbj13ZXN0dXM=?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTVRJeVlUSTVOemd0TmpjME5pMDBaVFF3TFdJNE1qQXRaakk0WVdJMU1XTXhNMk0wTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMC0wMy0wMSZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfMzQ4YjBiZTYtY2QxYy00MjcwLTgyZjYtYjk0ZWY2OWNiN2ZmO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTXpRNFlqQmlaVFl0WTJReFl5MDBNamN3TFRneVpqWXRZamswWldZMk9XTmlOMlptTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a27f8bf3-bd8d-485b-960b-c082d1ef0525" + "5d1aae74-1666-48fd-9520-2e7bf2117fff" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -408,13 +408,13 @@ "11996" ], "x-ms-request-id": [ - "ef042980-a838-4c1f-87ba-6184107cd6e3" + "662b0828-2b55-4602-9eef-a3fee72dfde5" ], "x-ms-correlation-request-id": [ - "ef042980-a838-4c1f-87ba-6184107cd6e3" + "662b0828-2b55-4602-9eef-a3fee72dfde5" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162251Z:ef042980-a838-4c1f-87ba-6184107cd6e3" + "WESTCENTRALUS:20230216T184217Z:662b0828-2b55-4602-9eef-a3fee72dfde5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -423,10 +423,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:50 GMT" + "Thu, 16 Feb 2023 18:42:16 GMT" ], "Content-Length": [ - "22" + "20" ], "Content-Type": [ "application/json; charset=utf-8" @@ -435,25 +435,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfMzQ4YjBiZTYtY2QxYy00MjcwLTgyZjYtYjk0ZWY2OWNiN2ZmO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYVdROWIzTmZhV2hmTXpRNFlqQmlaVFl0WTJReFl5MDBNamN3TFRneVpqWXRZamswWldZMk9XTmlOMlptTzNKbFoybHZiajEzWlhOMGRYTT0/YXBpLXZlcnNpb249MjAyMS0wNy0wMiZvcGVyYXRpb25Tb3VyY2U9b3RoZXImYXN5bmNpbmZv", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a27f8bf3-bd8d-485b-960b-c082d1ef0525" + "5d1aae74-1666-48fd-9520-2e7bf2117fff" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -468,13 +468,13 @@ "11995" ], "x-ms-request-id": [ - "aac75ef9-8513-45c7-845a-1bde14074d3a" + "56614677-d61f-4c83-8f01-456b1f77203d" ], "x-ms-correlation-request-id": [ - "aac75ef9-8513-45c7-845a-1bde14074d3a" + "56614677-d61f-4c83-8f01-456b1f77203d" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162252Z:aac75ef9-8513-45c7-845a-1bde14074d3a" + "WESTCENTRALUS:20230216T184247Z:56614677-d61f-4c83-8f01-456b1f77203d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,10 +483,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:51 GMT" + "Thu, 16 Feb 2023 18:42:47 GMT" ], "Content-Length": [ - "1488" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,28 +495,88 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d1aae74-1666-48fd-9520-2e7bf2117fff" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "aae2654a-7e91-45b0-af72-2f4358cae56c" + ], + "x-ms-correlation-request-id": [ + "aae2654a-7e91-45b0-af72-2f4358cae56c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20230216T184248Z:aae2654a-7e91-45b0-af72-2f4358cae56c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Feb 2023 18:42:48 GMT" + ], + "Content-Length": [ + "1562" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a27f8bf3-bd8d-485b-960b-c082d1ef0525" + "5d1aae74-1666-48fd-9520-2e7bf2117fff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -528,16 +588,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "74ba8dd3-72f1-4a33-a19e-666fc941cc45" + "7f57c34c-0d41-4802-9691-a2c005a7e569" ], "x-ms-correlation-request-id": [ - "74ba8dd3-72f1-4a33-a19e-666fc941cc45" + "7f57c34c-0d41-4802-9691-a2c005a7e569" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162252Z:74ba8dd3-72f1-4a33-a19e-666fc941cc45" + "WESTCENTRALUS:20230216T184249Z:7f57c34c-0d41-4802-9691-a2c005a7e569" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -546,10 +606,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:52 GMT" + "Thu, 16 Feb 2023 18:42:49 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -558,28 +618,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "185f4f3e-8a51-4e90-90f3-4c805167c929" + "f44836af-378a-48fe-aeef-d433d979a83b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -591,16 +651,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-request-id": [ - "06584fe8-b0fe-49bb-a11e-37e0d5293d50" + "cc3a130c-c1d6-4339-a7cb-47f86835e7dd" ], "x-ms-correlation-request-id": [ - "06584fe8-b0fe-49bb-a11e-37e0d5293d50" + "cc3a130c-c1d6-4339-a7cb-47f86835e7dd" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162253Z:06584fe8-b0fe-49bb-a11e-37e0d5293d50" + "WESTUS:20230216T184250Z:cc3a130c-c1d6-4339-a7cb-47f86835e7dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -609,10 +669,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:52 GMT" + "Thu, 16 Feb 2023 18:42:49 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -621,28 +681,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "336c3779-75f9-4a94-bf10-7da6264a4158" + "36a89988-499a-4407-a5f7-2f091d039855" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -654,16 +714,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-request-id": [ - "94f26c39-4b1a-4ec1-90dc-3d7ec037f167" + "ee2cc2c8-7717-4508-9de5-abcf2feca8f3" ], "x-ms-correlation-request-id": [ - "94f26c39-4b1a-4ec1-90dc-3d7ec037f167" + "ee2cc2c8-7717-4508-9de5-abcf2feca8f3" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162254Z:94f26c39-4b1a-4ec1-90dc-3d7ec037f167" + "WESTUS:20230216T184251Z:ee2cc2c8-7717-4508-9de5-abcf2feca8f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -672,10 +732,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:53 GMT" + "Thu, 16 Feb 2023 18:42:51 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -684,28 +744,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "daa6eb94-34c0-4dce-b1ab-2f4792ecc2d3" + "551e7985-5778-4032-9ca1-a050cd962113" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -717,16 +777,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-request-id": [ - "1eea96d1-d9ff-4c76-bed5-5ee6adbf3822" + "c9103e94-8b23-410e-8bee-3f4608931a5c" ], "x-ms-correlation-request-id": [ - "1eea96d1-d9ff-4c76-bed5-5ee6adbf3822" + "c9103e94-8b23-410e-8bee-3f4608931a5c" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162255Z:1eea96d1-d9ff-4c76-bed5-5ee6adbf3822" + "WESTUS:20230216T184253Z:c9103e94-8b23-410e-8bee-3f4608931a5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -735,10 +795,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:54 GMT" + "Thu, 16 Feb 2023 18:42:53 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -747,28 +807,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84f1b475-5b7f-4899-9df6-76dd3d0ecacf" + "5c12e51d-32c1-466e-b116-393a72f00ed5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -780,16 +840,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-request-id": [ - "5b18001e-f87a-4ee7-9ae5-3067458717a6" + "2285b553-fbf2-4a03-af70-fb3a716d18f2" ], "x-ms-correlation-request-id": [ - "5b18001e-f87a-4ee7-9ae5-3067458717a6" + "2285b553-fbf2-4a03-af70-fb3a716d18f2" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162256Z:5b18001e-f87a-4ee7-9ae5-3067458717a6" + "WESTCENTRALUS:20230216T184255Z:2285b553-fbf2-4a03-af70-fb3a716d18f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,10 +858,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:55 GMT" + "Thu, 16 Feb 2023 18:42:54 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -810,28 +870,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "125d6a05-b421-42e2-9f56-16278e7385ad" + "fc01f4af-1d33-4cb2-b8d4-db06c09a0c2b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -843,16 +903,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-request-id": [ - "6b514334-cc2e-4950-bbcc-e5adbb6a0d84" + "75037490-420a-455b-ab2e-e568ad66d7ba" ], "x-ms-correlation-request-id": [ - "6b514334-cc2e-4950-bbcc-e5adbb6a0d84" + "75037490-420a-455b-ab2e-e568ad66d7ba" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162257Z:6b514334-cc2e-4950-bbcc-e5adbb6a0d84" + "WESTCENTRALUS:20230216T184257Z:75037490-420a-455b-ab2e-e568ad66d7ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -861,10 +921,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:56 GMT" + "Thu, 16 Feb 2023 18:42:56 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -873,28 +933,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28219263-dae1-4266-b93a-7d4af9bb1a2e" + "b9cbd2b5-1e83-411a-93e4-11bea6cb75d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -906,16 +966,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "dbf4e4eb-7b95-4034-b5cd-29d786556705" + "16012ff5-2fb5-4857-b724-44ce7163dce1" ], "x-ms-correlation-request-id": [ - "dbf4e4eb-7b95-4034-b5cd-29d786556705" + "16012ff5-2fb5-4857-b724-44ce7163dce1" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162258Z:dbf4e4eb-7b95-4034-b5cd-29d786556705" + "WESTCENTRALUS:20230216T184258Z:16012ff5-2fb5-4857-b724-44ce7163dce1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -924,10 +984,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:57 GMT" + "Thu, 16 Feb 2023 18:42:58 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -936,28 +996,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68b5f352-a765-44f1-a887-92241e899e24" + "4dc1ab07-386c-45bb-8362-7b100bdae447" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -969,16 +1029,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-request-id": [ - "3804a18a-5476-49d9-b256-e9d1d7b5300f" + "10f74384-05e9-4ce7-a87c-5c2201061724" ], "x-ms-correlation-request-id": [ - "3804a18a-5476-49d9-b256-e9d1d7b5300f" + "10f74384-05e9-4ce7-a87c-5c2201061724" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162259Z:3804a18a-5476-49d9-b256-e9d1d7b5300f" + "WESTCENTRALUS:20230216T184300Z:10f74384-05e9-4ce7-a87c-5c2201061724" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -987,10 +1047,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:58 GMT" + "Thu, 16 Feb 2023 18:42:59 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -999,28 +1059,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e0c5a35-b870-4abf-bbef-144f044a120e" + "9607d075-bb0a-4d09-8635-ff5f1bdb6e2b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1032,16 +1092,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-request-id": [ - "b91134ca-91dd-42e4-be17-ea1065250273" + "b1c2be86-a6d4-4055-aa79-5de8a6911127" ], "x-ms-correlation-request-id": [ - "b91134ca-91dd-42e4-be17-ea1065250273" + "b1c2be86-a6d4-4055-aa79-5de8a6911127" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162259Z:b91134ca-91dd-42e4-be17-ea1065250273" + "WESTCENTRALUS:20230216T184301Z:b1c2be86-a6d4-4055-aa79-5de8a6911127" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,10 +1110,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:58 GMT" + "Thu, 16 Feb 2023 18:43:00 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1062,28 +1122,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2c989e5-128c-4233-a47c-36ff620c98cd" + "9d39132d-9593-4b2e-bc2b-20fe8d0327f0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1095,16 +1155,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11999" ], "x-ms-request-id": [ - "92f3a168-d47e-46b8-b41f-3066feb6e2cc" + "9ecdf653-1b06-461b-908c-8d3ee87741ea" ], "x-ms-correlation-request-id": [ - "92f3a168-d47e-46b8-b41f-3066feb6e2cc" + "9ecdf653-1b06-461b-908c-8d3ee87741ea" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162300Z:92f3a168-d47e-46b8-b41f-3066feb6e2cc" + "WESTCENTRALUS:20230216T184303Z:9ecdf653-1b06-461b-908c-8d3ee87741ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1113,10 +1173,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:59 GMT" + "Thu, 16 Feb 2023 18:43:03 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1125,28 +1185,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0ebed82-a1e2-41f3-8acd-75779bb675c5" + "4e54d52c-2c15-4bf9-9faa-ea4d8084cde5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1158,16 +1218,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11998" ], "x-ms-request-id": [ - "424d1486-ed70-4560-a6f1-90be5bc046a0" + "7abb8b82-0f00-4196-8707-4391d4dc3ab2" ], "x-ms-correlation-request-id": [ - "424d1486-ed70-4560-a6f1-90be5bc046a0" + "7abb8b82-0f00-4196-8707-4391d4dc3ab2" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162301Z:424d1486-ed70-4560-a6f1-90be5bc046a0" + "WESTUS:20230216T184305Z:7abb8b82-0f00-4196-8707-4391d4dc3ab2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1176,10 +1236,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:00 GMT" + "Thu, 16 Feb 2023 18:43:04 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1188,28 +1248,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb654aa4-e444-4e7f-b4d8-d7349a6f5c9c" + "200b116e-d4f5-45b7-bf54-83ccc78ecb79" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1221,16 +1281,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11999" ], "x-ms-request-id": [ - "7d42ea10-802b-48c6-aa47-d1af52967d57" + "6969b0d8-e762-4e8c-8472-47ea4be53419" ], "x-ms-correlation-request-id": [ - "7d42ea10-802b-48c6-aa47-d1af52967d57" + "6969b0d8-e762-4e8c-8472-47ea4be53419" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162302Z:7d42ea10-802b-48c6-aa47-d1af52967d57" + "WESTUS:20230216T184306Z:6969b0d8-e762-4e8c-8472-47ea4be53419" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1239,10 +1299,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:01 GMT" + "Thu, 16 Feb 2023 18:43:06 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1251,28 +1311,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fc2cc34-e7e2-4cdf-979e-859f9508ef60" + "674ef2d4-ed94-4c03-94c5-1798557b3434" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1284,16 +1344,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11999" ], "x-ms-request-id": [ - "5a56ce07-3109-4582-b4c8-f9b40b79f2bf" + "56dad845-0376-41a2-9ca9-e1ad367749e5" ], "x-ms-correlation-request-id": [ - "5a56ce07-3109-4582-b4c8-f9b40b79f2bf" + "56dad845-0376-41a2-9ca9-e1ad367749e5" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162304Z:5a56ce07-3109-4582-b4c8-f9b40b79f2bf" + "WESTUS:20230216T184308Z:56dad845-0376-41a2-9ca9-e1ad367749e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1302,10 +1362,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:03 GMT" + "Thu, 16 Feb 2023 18:43:07 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1314,28 +1374,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cffe33de-d94b-4f09-b2d8-60be08ee45ee" + "2b5fcdec-5c9e-4cf5-a65e-4416876f1f74" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1347,16 +1407,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11999" ], "x-ms-request-id": [ - "d17177da-343c-4f34-b023-c94979c2ab12" + "a0b69b41-e856-4a28-8570-8de45be77c6b" ], "x-ms-correlation-request-id": [ - "d17177da-343c-4f34-b023-c94979c2ab12" + "a0b69b41-e856-4a28-8570-8de45be77c6b" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162305Z:d17177da-343c-4f34-b023-c94979c2ab12" + "WESTUS:20230216T184310Z:a0b69b41-e856-4a28-8570-8de45be77c6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1365,10 +1425,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:04 GMT" + "Thu, 16 Feb 2023 18:43:09 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1377,28 +1437,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82e2a97c-5d25-4c6b-9491-966a789f5219" + "1962e835-0087-4149-8e70-b48a0200c3e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1410,16 +1470,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11999" ], "x-ms-request-id": [ - "3129e522-5c8c-4e47-b2e3-9dcc0b6f696e" + "3c4d6dbf-3eed-41c8-8cf2-5c44e3de0e49" ], "x-ms-correlation-request-id": [ - "3129e522-5c8c-4e47-b2e3-9dcc0b6f696e" + "3c4d6dbf-3eed-41c8-8cf2-5c44e3de0e49" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162306Z:3129e522-5c8c-4e47-b2e3-9dcc0b6f696e" + "WESTUS:20230216T184311Z:3c4d6dbf-3eed-41c8-8cf2-5c44e3de0e49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1428,10 +1488,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:05 GMT" + "Thu, 16 Feb 2023 18:43:11 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1440,28 +1500,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d197a384-a3d4-41a7-a18a-3810eaef9dfc" + "f772c68b-83d7-4060-b8c6-dedab95ee4fb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1473,16 +1533,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11999" ], "x-ms-request-id": [ - "d347feff-7a5e-4e66-9d13-05458d75672b" + "57009db9-7fe2-484d-af1c-9c51212fb9c6" ], "x-ms-correlation-request-id": [ - "d347feff-7a5e-4e66-9d13-05458d75672b" + "57009db9-7fe2-484d-af1c-9c51212fb9c6" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162307Z:d347feff-7a5e-4e66-9d13-05458d75672b" + "WESTUS:20230216T184312Z:57009db9-7fe2-484d-af1c-9c51212fb9c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1491,10 +1551,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:06 GMT" + "Thu, 16 Feb 2023 18:43:12 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1503,28 +1563,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1039d59d-b771-4351-8e03-5e2a20e28427" + "0b590170-2c8b-4c82-97b5-fffebd2a0a7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1536,16 +1596,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11999" ], "x-ms-request-id": [ - "57b99b52-747d-4656-9a42-e16203a86eb8" + "627ba53f-639d-4115-a5b5-773abcf55254" ], "x-ms-correlation-request-id": [ - "57b99b52-747d-4656-9a42-e16203a86eb8" + "627ba53f-639d-4115-a5b5-773abcf55254" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162308Z:57b99b52-747d-4656-9a42-e16203a86eb8" + "WESTUS:20230216T184314Z:627ba53f-639d-4115-a5b5-773abcf55254" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,10 +1614,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:07 GMT" + "Thu, 16 Feb 2023 18:43:13 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1566,28 +1626,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a2e508e-3fd0-4744-9b05-1910b8b14d15" + "71c7e1ae-26d0-4170-8a20-52cf5fb7faae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1599,16 +1659,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11999" ], "x-ms-request-id": [ - "314d915a-8ee0-449a-bf84-82bb30d53a35" + "292976bc-ec69-4353-a9b9-efda184fa30f" ], "x-ms-correlation-request-id": [ - "314d915a-8ee0-449a-bf84-82bb30d53a35" + "292976bc-ec69-4353-a9b9-efda184fa30f" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162309Z:314d915a-8ee0-449a-bf84-82bb30d53a35" + "WESTCENTRALUS:20230216T184315Z:292976bc-ec69-4353-a9b9-efda184fa30f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1617,10 +1677,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:08 GMT" + "Thu, 16 Feb 2023 18:43:15 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1629,28 +1689,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78867b35-bd03-403a-8c34-8fdeb004997c" + "3176d1fb-88b7-4ddc-9fb4-f8c908512be8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1662,16 +1722,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11999" ], "x-ms-request-id": [ - "f77cfeb7-4fd8-4768-8981-57b0cf186239" + "6e52ec93-1791-4ff3-a465-f8d2bc0b32df" ], "x-ms-correlation-request-id": [ - "f77cfeb7-4fd8-4768-8981-57b0cf186239" + "6e52ec93-1791-4ff3-a465-f8d2bc0b32df" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162310Z:f77cfeb7-4fd8-4768-8981-57b0cf186239" + "WESTCENTRALUS:20230216T184317Z:6e52ec93-1791-4ff3-a465-f8d2bc0b32df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1680,10 +1740,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:09 GMT" + "Thu, 16 Feb 2023 18:43:17 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1692,28 +1752,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95de7df3-61ff-4647-a671-942bb185a484" + "053fcdc3-1ac1-406a-8107-f185a2de8dfa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1725,16 +1785,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11998" ], "x-ms-request-id": [ - "c9fe47de-2b2b-47c7-b2e8-b8e502714a36" + "0adace01-9e9f-49e9-a8b8-1ed054782ca3" ], "x-ms-correlation-request-id": [ - "c9fe47de-2b2b-47c7-b2e8-b8e502714a36" + "0adace01-9e9f-49e9-a8b8-1ed054782ca3" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162321Z:c9fe47de-2b2b-47c7-b2e8-b8e502714a36" + "WESTCENTRALUS:20230216T184329Z:0adace01-9e9f-49e9-a8b8-1ed054782ca3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1743,10 +1803,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:21 GMT" + "Thu, 16 Feb 2023 18:43:29 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1755,28 +1815,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58977b61-8761-45f5-9f80-9f339ef9abb1" + "3324d950-888d-413f-a7bd-081de299262f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1788,16 +1848,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11999" ], "x-ms-request-id": [ - "8123d5c7-cbe0-46dd-9933-da245b8e9e22" + "50b57a5d-3194-482f-8e0a-5d174b1558da" ], "x-ms-correlation-request-id": [ - "8123d5c7-cbe0-46dd-9933-da245b8e9e22" + "50b57a5d-3194-482f-8e0a-5d174b1558da" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162322Z:8123d5c7-cbe0-46dd-9933-da245b8e9e22" + "WESTCENTRALUS:20230216T184331Z:50b57a5d-3194-482f-8e0a-5d174b1558da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1806,10 +1866,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:21 GMT" + "Thu, 16 Feb 2023 18:43:30 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1818,28 +1878,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3bd6fc6-40ed-4d47-ac01-860d518af4b2" + "f44e2e21-451d-4c07-b00b-07f4990b1f62" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1851,16 +1911,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11999" ], "x-ms-request-id": [ - "298345af-e15a-45b8-b2ef-07828637f8cc" + "b1c2a175-cae5-407a-a075-2e638472b703" ], "x-ms-correlation-request-id": [ - "298345af-e15a-45b8-b2ef-07828637f8cc" + "b1c2a175-cae5-407a-a075-2e638472b703" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162322Z:298345af-e15a-45b8-b2ef-07828637f8cc" + "WESTCENTRALUS:20230216T184333Z:b1c2a175-cae5-407a-a075-2e638472b703" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1869,10 +1929,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:22 GMT" + "Thu, 16 Feb 2023 18:43:32 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1881,28 +1941,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5f5e813-4173-4001-a7ba-2264c011adff" + "e4205570-0232-47a7-ad86-3521126f089e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1914,16 +1974,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11999" ], "x-ms-request-id": [ - "a337bb5c-1fa0-49fc-b5fa-36b4a80122f2" + "525050f7-3413-47be-bb4f-3bc7c9d071f6" ], "x-ms-correlation-request-id": [ - "a337bb5c-1fa0-49fc-b5fa-36b4a80122f2" + "525050f7-3413-47be-bb4f-3bc7c9d071f6" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162323Z:a337bb5c-1fa0-49fc-b5fa-36b4a80122f2" + "WESTCENTRALUS:20230216T184334Z:525050f7-3413-47be-bb4f-3bc7c9d071f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1932,10 +1992,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:23 GMT" + "Thu, 16 Feb 2023 18:43:33 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1944,28 +2004,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d05c6f3-8efd-4259-b1aa-666808855c97" + "c7a46133-cb91-40fb-bfd9-1d4933f0c202" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1977,16 +2037,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11999" ], "x-ms-request-id": [ - "466b3844-b9c4-4b6a-96c9-d782b7dc9e0f" + "cfc26da3-50a3-4e19-a612-bd542e910429" ], "x-ms-correlation-request-id": [ - "466b3844-b9c4-4b6a-96c9-d782b7dc9e0f" + "cfc26da3-50a3-4e19-a612-bd542e910429" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162324Z:466b3844-b9c4-4b6a-96c9-d782b7dc9e0f" + "WESTCENTRALUS:20230216T184336Z:cfc26da3-50a3-4e19-a612-bd542e910429" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1995,10 +2055,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:24 GMT" + "Thu, 16 Feb 2023 18:43:36 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2007,28 +2067,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "321ffdee-4af1-4e7c-b446-7eeb566328a3" + "3fff71fe-4719-41a7-bd26-9685193c2319" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2040,16 +2100,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11999" ], "x-ms-request-id": [ - "6a12fae8-c995-4cb2-840f-20974e7cdb9a" + "6487250d-b184-4263-804c-a96be5677ccf" ], "x-ms-correlation-request-id": [ - "6a12fae8-c995-4cb2-840f-20974e7cdb9a" + "6487250d-b184-4263-804c-a96be5677ccf" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162325Z:6a12fae8-c995-4cb2-840f-20974e7cdb9a" + "WESTCENTRALUS:20230216T184338Z:6487250d-b184-4263-804c-a96be5677ccf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2058,10 +2118,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:25 GMT" + "Thu, 16 Feb 2023 18:43:37 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2070,28 +2130,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad4f83aa-a6e6-4dd7-b35f-5c54047dcfdb" + "fad70670-a6c6-4848-94bd-fc86d751023a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2103,16 +2163,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11998" ], "x-ms-request-id": [ - "a481f23f-3a5b-4f2d-95a8-e9eef79f49da" + "6982e8e6-083f-40e6-90e9-e723ef6ea813" ], "x-ms-correlation-request-id": [ - "a481f23f-3a5b-4f2d-95a8-e9eef79f49da" + "6982e8e6-083f-40e6-90e9-e723ef6ea813" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162326Z:a481f23f-3a5b-4f2d-95a8-e9eef79f49da" + "WESTCENTRALUS:20230216T184339Z:6982e8e6-083f-40e6-90e9-e723ef6ea813" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2121,10 +2181,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:26 GMT" + "Thu, 16 Feb 2023 18:43:39 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2133,28 +2193,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23509755-7647-4e4b-90a4-18a92a8b5d72" + "1c975625-c1b1-47cd-bf6e-94c413c5256d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2166,16 +2226,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11998" ], "x-ms-request-id": [ - "a7c3eb07-9621-404b-ace0-0dfa215b0c15" + "64eade55-ba4e-4df4-a451-aa5075bdedc2" ], "x-ms-correlation-request-id": [ - "a7c3eb07-9621-404b-ace0-0dfa215b0c15" + "64eade55-ba4e-4df4-a451-aa5075bdedc2" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162327Z:a7c3eb07-9621-404b-ace0-0dfa215b0c15" + "WESTCENTRALUS:20230216T184341Z:64eade55-ba4e-4df4-a451-aa5075bdedc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2184,10 +2244,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:27 GMT" + "Thu, 16 Feb 2023 18:43:40 GMT" ], "Content-Length": [ - "1488" + "1562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2196,28 +2256,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709\",\r\n \"name\": \"ps1709\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps1663\",\r\n \"etag\": \"AAAADFribeY=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps1709.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps1709\",\r\n \"endpoint\": \"sb://iothub-ns-ps1709-15425635-5b202411e1.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998\",\r\n \"name\": \"ps6998\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6153\",\r\n \"etag\": \"AAAADHxV4Dk=\",\r\n \"properties\": {\r\n \"locations\": [\r\n {\r\n \"location\": \"West US\",\r\n \"role\": \"primary\"\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"role\": \"secondary\"\r\n }\r\n ],\r\n \"state\": \"Active\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipFilterRules\": [],\r\n \"hostName\": \"ps6998.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps6998\",\r\n \"endpoint\": \"sb://iothub-ns-ps6998-24619133-fc39feb4dd.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:40:15.99Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/IotHubKeys/iothubowner/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/IotHubKeys/iothubowner/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvSW90SHViS2V5cy9pb3RodWJvd25lci9saXN0a2V5cz9hcGktdmVyc2lvbj0yMDIxLTA3LTAy", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "185f4f3e-8a51-4e90-90f3-4c805167c929" + "f44836af-378a-48fe-aeef-d433d979a83b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2232,13 +2292,13 @@ "1199" ], "x-ms-request-id": [ - "3de77fed-7586-4166-8ef1-55e13d486ab4" + "ba2a770a-200d-4723-b72a-79fadd956bfa" ], "x-ms-correlation-request-id": [ - "3de77fed-7586-4166-8ef1-55e13d486ab4" + "ba2a770a-200d-4723-b72a-79fadd956bfa" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162253Z:3de77fed-7586-4166-8ef1-55e13d486ab4" + "WESTUS:20230216T184250Z:ba2a770a-200d-4723-b72a-79fadd956bfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2247,7 +2307,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:52 GMT" + "Thu, 16 Feb 2023 18:42:50 GMT" ], "Content-Length": [ "203" @@ -2259,28 +2319,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", + "ResponseBody": "{\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "336c3779-75f9-4a94-bf10-7da6264a4158" + "36a89988-499a-4407-a5f7-2f091d039855" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2292,16 +2352,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "c697911c-cc47-436c-86f9-7e985e9745b2" + "05f9c3d4-016a-4485-82f4-9f59bc76c5f9" ], "x-ms-correlation-request-id": [ - "c697911c-cc47-436c-86f9-7e985e9745b2" + "05f9c3d4-016a-4485-82f4-9f59bc76c5f9" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162254Z:c697911c-cc47-436c-86f9-7e985e9745b2" + "WESTUS:20230216T184251Z:05f9c3d4-016a-4485-82f4-9f59bc76c5f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2310,7 +2370,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:53 GMT" + "Thu, 16 Feb 2023 18:42:51 GMT" ], "Content-Length": [ "905" @@ -2322,28 +2382,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "daa6eb94-34c0-4dce-b1ab-2f4792ecc2d3" + "551e7985-5778-4032-9ca1-a050cd962113" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2355,16 +2415,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "e08ee18b-9756-4be6-bcf8-47a7df8e47d2" + "d725826e-7f07-4530-b058-c6a20e6850a9" ], "x-ms-correlation-request-id": [ - "e08ee18b-9756-4be6-bcf8-47a7df8e47d2" + "d725826e-7f07-4530-b058-c6a20e6850a9" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162255Z:e08ee18b-9756-4be6-bcf8-47a7df8e47d2" + "WESTUS:20230216T184253Z:d725826e-7f07-4530-b058-c6a20e6850a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2373,7 +2433,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:54 GMT" + "Thu, 16 Feb 2023 18:42:53 GMT" ], "Content-Length": [ "905" @@ -2385,28 +2445,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84f1b475-5b7f-4899-9df6-76dd3d0ecacf" + "5c12e51d-32c1-466e-b116-393a72f00ed5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2418,16 +2478,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "45bef62e-83b0-4d08-bbd8-0df7922d0826" + "18819457-56c0-4612-bac8-6d7a58961014" ], "x-ms-correlation-request-id": [ - "45bef62e-83b0-4d08-bbd8-0df7922d0826" + "18819457-56c0-4612-bac8-6d7a58961014" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162256Z:45bef62e-83b0-4d08-bbd8-0df7922d0826" + "WESTCENTRALUS:20230216T184255Z:18819457-56c0-4612-bac8-6d7a58961014" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2436,7 +2496,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:55 GMT" + "Thu, 16 Feb 2023 18:42:55 GMT" ], "Content-Length": [ "905" @@ -2448,28 +2508,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "125d6a05-b421-42e2-9f56-16278e7385ad" + "fc01f4af-1d33-4cb2-b8d4-db06c09a0c2b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2481,16 +2541,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "a3394f5e-9db2-468e-a898-652b3d45b66f" + "bf0a6584-9343-4e0a-9734-9690324afe29" ], "x-ms-correlation-request-id": [ - "a3394f5e-9db2-468e-a898-652b3d45b66f" + "bf0a6584-9343-4e0a-9734-9690324afe29" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162257Z:a3394f5e-9db2-468e-a898-652b3d45b66f" + "WESTCENTRALUS:20230216T184257Z:bf0a6584-9343-4e0a-9734-9690324afe29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2499,7 +2559,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:56 GMT" + "Thu, 16 Feb 2023 18:42:57 GMT" ], "Content-Length": [ "905" @@ -2511,28 +2571,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28219263-dae1-4266-b93a-7d4af9bb1a2e" + "b9cbd2b5-1e83-411a-93e4-11bea6cb75d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2544,16 +2604,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-request-id": [ - "b09b2f6a-b8ec-44d7-bf07-f352372479e2" + "3a4e1f5e-d725-4bc5-8ef9-d348aa32e8c8" ], "x-ms-correlation-request-id": [ - "b09b2f6a-b8ec-44d7-bf07-f352372479e2" + "3a4e1f5e-d725-4bc5-8ef9-d348aa32e8c8" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162258Z:b09b2f6a-b8ec-44d7-bf07-f352372479e2" + "WESTCENTRALUS:20230216T184259Z:3a4e1f5e-d725-4bc5-8ef9-d348aa32e8c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2562,7 +2622,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:57 GMT" + "Thu, 16 Feb 2023 18:42:58 GMT" ], "Content-Length": [ "905" @@ -2574,28 +2634,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e0c5a35-b870-4abf-bbef-144f044a120e" + "9607d075-bb0a-4d09-8635-ff5f1bdb6e2b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2607,16 +2667,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-request-id": [ - "2ee83f03-eb8b-4403-a780-f3d2ac30a69c" + "152f89d6-1e93-439b-9d9f-7acbdf00767d" ], "x-ms-correlation-request-id": [ - "2ee83f03-eb8b-4403-a780-f3d2ac30a69c" + "152f89d6-1e93-439b-9d9f-7acbdf00767d" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162259Z:2ee83f03-eb8b-4403-a780-f3d2ac30a69c" + "WESTCENTRALUS:20230216T184302Z:152f89d6-1e93-439b-9d9f-7acbdf00767d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2625,7 +2685,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:59 GMT" + "Thu, 16 Feb 2023 18:43:01 GMT" ], "Content-Length": [ "905" @@ -2637,28 +2697,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2c989e5-128c-4233-a47c-36ff620c98cd" + "9d39132d-9593-4b2e-bc2b-20fe8d0327f0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2670,16 +2730,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-request-id": [ - "86d23167-39fa-4437-8405-a04f6924bc16" + "b5001cc2-53e1-4d92-8bde-efee781eb502" ], "x-ms-correlation-request-id": [ - "86d23167-39fa-4437-8405-a04f6924bc16" + "b5001cc2-53e1-4d92-8bde-efee781eb502" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162300Z:86d23167-39fa-4437-8405-a04f6924bc16" + "WESTCENTRALUS:20230216T184303Z:b5001cc2-53e1-4d92-8bde-efee781eb502" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2688,7 +2748,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:22:59 GMT" + "Thu, 16 Feb 2023 18:43:03 GMT" ], "Content-Length": [ "905" @@ -2700,28 +2760,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0ebed82-a1e2-41f3-8acd-75779bb675c5" + "4e54d52c-2c15-4bf9-9faa-ea4d8084cde5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2733,16 +2793,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-request-id": [ - "f63c1657-4c92-4d64-a499-e12cc4c400ec" + "ee2ce034-aa9e-43c2-b8af-17e0d9ae8d78" ], "x-ms-correlation-request-id": [ - "f63c1657-4c92-4d64-a499-e12cc4c400ec" + "ee2ce034-aa9e-43c2-b8af-17e0d9ae8d78" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162301Z:f63c1657-4c92-4d64-a499-e12cc4c400ec" + "WESTUS:20230216T184305Z:ee2ce034-aa9e-43c2-b8af-17e0d9ae8d78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2751,7 +2811,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:00 GMT" + "Thu, 16 Feb 2023 18:43:04 GMT" ], "Content-Length": [ "905" @@ -2763,28 +2823,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb654aa4-e444-4e7f-b4d8-d7349a6f5c9c" + "200b116e-d4f5-45b7-bf54-83ccc78ecb79" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2796,16 +2856,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-request-id": [ - "2334ee77-5be7-45b1-8999-04b2e0847158" + "9a9512fc-8216-4e69-9a31-1b10e8c49023" ], "x-ms-correlation-request-id": [ - "2334ee77-5be7-45b1-8999-04b2e0847158" + "9a9512fc-8216-4e69-9a31-1b10e8c49023" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162303Z:2334ee77-5be7-45b1-8999-04b2e0847158" + "WESTUS:20230216T184306Z:9a9512fc-8216-4e69-9a31-1b10e8c49023" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2814,7 +2874,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:02 GMT" + "Thu, 16 Feb 2023 18:43:06 GMT" ], "Content-Length": [ "905" @@ -2826,28 +2886,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fc2cc34-e7e2-4cdf-979e-859f9508ef60" + "674ef2d4-ed94-4c03-94c5-1798557b3434" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2859,16 +2919,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-request-id": [ - "79ea95cf-3bd5-4c89-97ab-3e4d2eeffaf0" + "bb5ac0a4-8e22-46d5-b423-95de98961a52" ], "x-ms-correlation-request-id": [ - "79ea95cf-3bd5-4c89-97ab-3e4d2eeffaf0" + "bb5ac0a4-8e22-46d5-b423-95de98961a52" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162304Z:79ea95cf-3bd5-4c89-97ab-3e4d2eeffaf0" + "WESTUS:20230216T184308Z:bb5ac0a4-8e22-46d5-b423-95de98961a52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2877,7 +2937,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:03 GMT" + "Thu, 16 Feb 2023 18:43:08 GMT" ], "Content-Length": [ "905" @@ -2889,28 +2949,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cffe33de-d94b-4f09-b2d8-60be08ee45ee" + "2b5fcdec-5c9e-4cf5-a65e-4416876f1f74" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2922,16 +2982,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1199" ], "x-ms-request-id": [ - "adcf5d81-3894-4fbd-9635-19b434bf727d" + "83a616ae-3698-4100-b7d7-c0e361f26f21" ], "x-ms-correlation-request-id": [ - "adcf5d81-3894-4fbd-9635-19b434bf727d" + "83a616ae-3698-4100-b7d7-c0e361f26f21" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162305Z:adcf5d81-3894-4fbd-9635-19b434bf727d" + "WESTUS:20230216T184310Z:83a616ae-3698-4100-b7d7-c0e361f26f21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2940,7 +3000,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:04 GMT" + "Thu, 16 Feb 2023 18:43:09 GMT" ], "Content-Length": [ "905" @@ -2952,28 +3012,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82e2a97c-5d25-4c6b-9491-966a789f5219" + "1962e835-0087-4149-8e70-b48a0200c3e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2985,16 +3045,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1199" ], "x-ms-request-id": [ - "a3d6013f-98d9-400a-a8e4-ed6aa00c1ca4" + "f97adf9f-6583-46ed-b49b-7a695f469b36" ], "x-ms-correlation-request-id": [ - "a3d6013f-98d9-400a-a8e4-ed6aa00c1ca4" + "f97adf9f-6583-46ed-b49b-7a695f469b36" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162306Z:a3d6013f-98d9-400a-a8e4-ed6aa00c1ca4" + "WESTUS:20230216T184311Z:f97adf9f-6583-46ed-b49b-7a695f469b36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3003,7 +3063,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:05 GMT" + "Thu, 16 Feb 2023 18:43:11 GMT" ], "Content-Length": [ "905" @@ -3015,28 +3075,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d197a384-a3d4-41a7-a18a-3810eaef9dfc" + "f772c68b-83d7-4060-b8c6-dedab95ee4fb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3048,16 +3108,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1199" ], "x-ms-request-id": [ - "1bf9ab90-ec36-4f9e-a0db-fd3f17dd65cc" + "b674ba30-9fc0-4db4-b3f2-1b7e62cfc663" ], "x-ms-correlation-request-id": [ - "1bf9ab90-ec36-4f9e-a0db-fd3f17dd65cc" + "b674ba30-9fc0-4db4-b3f2-1b7e62cfc663" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162307Z:1bf9ab90-ec36-4f9e-a0db-fd3f17dd65cc" + "WESTUS:20230216T184313Z:b674ba30-9fc0-4db4-b3f2-1b7e62cfc663" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3066,7 +3126,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:06 GMT" + "Thu, 16 Feb 2023 18:43:12 GMT" ], "Content-Length": [ "905" @@ -3078,28 +3138,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1039d59d-b771-4351-8e03-5e2a20e28427" + "0b590170-2c8b-4c82-97b5-fffebd2a0a7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3111,16 +3171,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1199" ], "x-ms-request-id": [ - "7285e334-6545-4576-8450-4eaec4652e50" + "8d12af2f-c1ac-456c-8d4f-b3dfdfb84a7b" ], "x-ms-correlation-request-id": [ - "7285e334-6545-4576-8450-4eaec4652e50" + "8d12af2f-c1ac-456c-8d4f-b3dfdfb84a7b" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162308Z:7285e334-6545-4576-8450-4eaec4652e50" + "WESTUS:20230216T184314Z:8d12af2f-c1ac-456c-8d4f-b3dfdfb84a7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3129,7 +3189,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:07 GMT" + "Thu, 16 Feb 2023 18:43:13 GMT" ], "Content-Length": [ "905" @@ -3141,28 +3201,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a2e508e-3fd0-4744-9b05-1910b8b14d15" + "71c7e1ae-26d0-4170-8a20-52cf5fb7faae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3174,16 +3234,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1199" ], "x-ms-request-id": [ - "96940d4d-848d-4c25-bdd6-c891cb28f2b7" + "8208e76b-eb03-4a31-b05c-975d45ad82d1" ], "x-ms-correlation-request-id": [ - "96940d4d-848d-4c25-bdd6-c891cb28f2b7" + "8208e76b-eb03-4a31-b05c-975d45ad82d1" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162309Z:96940d4d-848d-4c25-bdd6-c891cb28f2b7" + "WESTCENTRALUS:20230216T184316Z:8208e76b-eb03-4a31-b05c-975d45ad82d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3192,7 +3252,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:08 GMT" + "Thu, 16 Feb 2023 18:43:15 GMT" ], "Content-Length": [ "905" @@ -3204,28 +3264,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78867b35-bd03-403a-8c34-8fdeb004997c" + "3176d1fb-88b7-4ddc-9fb4-f8c908512be8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3237,16 +3297,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1199" ], "x-ms-request-id": [ - "579b8e9c-18b7-4b26-bd07-36c1e360d4bc" + "ed30295e-c159-49a1-84f3-3cdfc79a7dea" ], "x-ms-correlation-request-id": [ - "579b8e9c-18b7-4b26-bd07-36c1e360d4bc" + "ed30295e-c159-49a1-84f3-3cdfc79a7dea" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162310Z:579b8e9c-18b7-4b26-bd07-36c1e360d4bc" + "WESTCENTRALUS:20230216T184318Z:ed30295e-c159-49a1-84f3-3cdfc79a7dea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3255,7 +3315,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:09 GMT" + "Thu, 16 Feb 2023 18:43:18 GMT" ], "Content-Length": [ "905" @@ -3267,28 +3327,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95de7df3-61ff-4647-a671-942bb185a484" + "053fcdc3-1ac1-406a-8107-f185a2de8dfa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3300,16 +3360,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1198" ], "x-ms-request-id": [ - "9e23dc0c-bad6-4dc5-aae5-521cd2433781" + "33877262-1483-419c-9773-de254b50186d" ], "x-ms-correlation-request-id": [ - "9e23dc0c-bad6-4dc5-aae5-521cd2433781" + "33877262-1483-419c-9773-de254b50186d" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162321Z:9e23dc0c-bad6-4dc5-aae5-521cd2433781" + "WESTCENTRALUS:20230216T184329Z:33877262-1483-419c-9773-de254b50186d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3318,7 +3378,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:21 GMT" + "Thu, 16 Feb 2023 18:43:29 GMT" ], "Content-Length": [ "905" @@ -3330,28 +3390,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58977b61-8761-45f5-9f80-9f339ef9abb1" + "3324d950-888d-413f-a7bd-081de299262f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3363,16 +3423,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1199" ], "x-ms-request-id": [ - "1acb9986-a2a4-49c4-b518-0cd768f660b9" + "14a91f46-cab1-467f-929a-7ac7cbaa00a8" ], "x-ms-correlation-request-id": [ - "1acb9986-a2a4-49c4-b518-0cd768f660b9" + "14a91f46-cab1-467f-929a-7ac7cbaa00a8" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162322Z:1acb9986-a2a4-49c4-b518-0cd768f660b9" + "WESTCENTRALUS:20230216T184331Z:14a91f46-cab1-467f-929a-7ac7cbaa00a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3381,7 +3441,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:22 GMT" + "Thu, 16 Feb 2023 18:43:31 GMT" ], "Content-Length": [ "905" @@ -3393,28 +3453,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3bd6fc6-40ed-4d47-ac01-860d518af4b2" + "f44e2e21-451d-4c07-b00b-07f4990b1f62" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3426,16 +3486,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1199" ], "x-ms-request-id": [ - "6271bf5f-72b8-46f9-afb6-0fe42922aba6" + "d80bd2d7-d7fe-4a83-ad72-5291bb8882d0" ], "x-ms-correlation-request-id": [ - "6271bf5f-72b8-46f9-afb6-0fe42922aba6" + "d80bd2d7-d7fe-4a83-ad72-5291bb8882d0" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162323Z:6271bf5f-72b8-46f9-afb6-0fe42922aba6" + "WESTCENTRALUS:20230216T184333Z:d80bd2d7-d7fe-4a83-ad72-5291bb8882d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3444,7 +3504,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:23 GMT" + "Thu, 16 Feb 2023 18:43:32 GMT" ], "Content-Length": [ "905" @@ -3456,28 +3516,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5f5e813-4173-4001-a7ba-2264c011adff" + "e4205570-0232-47a7-ad86-3521126f089e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3489,16 +3549,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1199" ], "x-ms-request-id": [ - "1528c395-1b03-4616-9ab6-8858358c8273" + "db28e000-d64a-4356-a718-db0be0a3b3bd" ], "x-ms-correlation-request-id": [ - "1528c395-1b03-4616-9ab6-8858358c8273" + "db28e000-d64a-4356-a718-db0be0a3b3bd" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162324Z:1528c395-1b03-4616-9ab6-8858358c8273" + "WESTCENTRALUS:20230216T184335Z:db28e000-d64a-4356-a718-db0be0a3b3bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3507,7 +3567,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:24 GMT" + "Thu, 16 Feb 2023 18:43:34 GMT" ], "Content-Length": [ "905" @@ -3519,28 +3579,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d05c6f3-8efd-4259-b1aa-666808855c97" + "c7a46133-cb91-40fb-bfd9-1d4933f0c202" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3552,16 +3612,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1199" ], "x-ms-request-id": [ - "cfe55324-92fb-40af-84a1-210d3c3a6b7c" + "2f16320e-b9cd-4197-8bf0-249c71a84006" ], "x-ms-correlation-request-id": [ - "cfe55324-92fb-40af-84a1-210d3c3a6b7c" + "2f16320e-b9cd-4197-8bf0-249c71a84006" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162325Z:cfe55324-92fb-40af-84a1-210d3c3a6b7c" + "WESTCENTRALUS:20230216T184336Z:2f16320e-b9cd-4197-8bf0-249c71a84006" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3570,7 +3630,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:24 GMT" + "Thu, 16 Feb 2023 18:43:36 GMT" ], "Content-Length": [ "905" @@ -3582,28 +3642,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "321ffdee-4af1-4e7c-b446-7eeb566328a3" + "3fff71fe-4719-41a7-bd26-9685193c2319" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3615,16 +3675,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1199" ], "x-ms-request-id": [ - "4eac8d09-7e53-4ed3-bd8d-f90f27601907" + "c2786022-b389-436e-bda4-ff22d2e4f733" ], "x-ms-correlation-request-id": [ - "4eac8d09-7e53-4ed3-bd8d-f90f27601907" + "c2786022-b389-436e-bda4-ff22d2e4f733" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162326Z:4eac8d09-7e53-4ed3-bd8d-f90f27601907" + "WESTCENTRALUS:20230216T184338Z:c2786022-b389-436e-bda4-ff22d2e4f733" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3633,7 +3693,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:25 GMT" + "Thu, 16 Feb 2023 18:43:37 GMT" ], "Content-Length": [ "905" @@ -3645,28 +3705,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad4f83aa-a6e6-4dd7-b35f-5c54047dcfdb" + "fad70670-a6c6-4848-94bd-fc86d751023a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3678,16 +3738,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "1198" ], "x-ms-request-id": [ - "d11992a6-61ac-4ece-8470-3c34042d0aeb" + "e8370f69-d763-4a3c-b336-e133b58cb828" ], "x-ms-correlation-request-id": [ - "d11992a6-61ac-4ece-8470-3c34042d0aeb" + "e8370f69-d763-4a3c-b336-e133b58cb828" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162327Z:d11992a6-61ac-4ece-8470-3c34042d0aeb" + "WESTCENTRALUS:20230216T184340Z:e8370f69-d763-4a3c-b336-e133b58cb828" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3696,7 +3756,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:26 GMT" + "Thu, 16 Feb 2023 18:43:40 GMT" ], "Content-Length": [ "905" @@ -3708,28 +3768,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps1663/providers/Microsoft.Devices/IotHubs/ps1709/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMTY2My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczE3MDkvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6153/providers/Microsoft.Devices/IotHubs/ps6998/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczY5OTgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23509755-7647-4e4b-90a4-18a92a8b5d72" + "1c975625-c1b1-47cd-bf6e-94c413c5256d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3741,16 +3801,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1198" ], "x-ms-request-id": [ - "f4d06fc3-c1e3-4cc5-944a-8e36353ab84f" + "fbd193e8-2370-4db4-9e4f-1184a918f9a7" ], "x-ms-correlation-request-id": [ - "f4d06fc3-c1e3-4cc5-944a-8e36353ab84f" + "fbd193e8-2370-4db4-9e4f-1184a918f9a7" ], "x-ms-routing-request-id": [ - "WESTUS:20211018T162328Z:f4d06fc3-c1e3-4cc5-944a-8e36353ab84f" + "WESTCENTRALUS:20230216T184341Z:fbd193e8-2370-4db4-9e4f-1184a918f9a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3759,7 +3819,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:23:27 GMT" + "Thu, 16 Feb 2023 18:43:40 GMT" ], "Content-Length": [ "905" @@ -3771,18 +3831,18 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"SSVSZ9IN+zhdYa8pQG+HMAND2RNIH8Nq7hXWhlPJKD0=\",\r\n \"secondaryKey\": \"6T3D0Mo8plKEGGwvUJb1pBwOb3j1UeBAJWdNbnwpmsc=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"8PultSdDsbXaNFqHtEwDEXPB4K8CFNzUlG6dZHPJgyA=\",\r\n \"secondaryKey\": \"dWTCk4SY/O/3WtOJl/0DYnvg2vrhEuTzOgvUydVFaPU=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"24WOVLmZSAqkKkncKGNIxSKS8COr6djicB+aecBwD4Q=\",\r\n \"secondaryKey\": \"T3hQ5Un2u1oZf0QKAd2/znjN4aH2HG6a9dcS7NES5dY=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Msl2pxXmElorvUgR7n2tuYDHin7apigO9xsfSCPO1xo=\",\r\n \"secondaryKey\": \"r7nt9mlHgA4pLwTpYHBTAdMgBtk0zWZLYvaTjqsHLLU=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"XQbw397a84j6rOsZZbItuwtnJnmzlDeiwGXAzPM1CJ4=\",\r\n \"secondaryKey\": \"IKPJrBnzH4IcB7xwd8JQforsNr5WptZaa9zEd4+mGFU=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "Test-AzureRmIotHubModuleLifecycle": [ - "ps1709", - "ps1663", - "ps7674", - "ps9334", - "ps9640", - "ps1146" + "ps6998", + "ps6153", + "ps1636", + "ps7699", + "ps8888", + "ps2091" ] }, "Variables": { diff --git a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPTracingTests/TestAzureIotHubTracing.json b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPTracingTests/TestAzureIotHubTracing.json index f10cfbf8fa9f..fdc575ec4fe6 100644 --- a/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPTracingTests/TestAzureIotHubTracing.json +++ b/src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubDPTracingTests/TestAzureIotHubTracing.json @@ -4,21 +4,21 @@ "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54a00151-6252-47d6-89ad-68a36fff034c" + "7670a9e9-4bf6-457c-952b-2bb19e2472b9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.47" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "130bb5ba-fd0d-495d-8a15-f00b8c845e2c" + "3f9199bb-7a94-4d61-bc34-8032d6e966c0" ], "x-ms-correlation-request-id": [ - "130bb5ba-fd0d-495d-8a15-f00b8c845e2c" + "3f9199bb-7a94-4d61-bc34-8032d6e966c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161154Z:130bb5ba-fd0d-495d-8a15-f00b8c845e2c" + "WESTCENTRALUS:20230216T184344Z:3f9199bb-7a94-4d61-bc34-8032d6e966c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:11:54 GMT" + "Thu, 16 Feb 2023 18:43:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,28 @@ "-1" ], "Content-Length": [ - "8553" + "9626" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"roleDefinitionId\": \"d04fc6c0-fc10-4ab8-b7de-c979247c3b65\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\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\": \"IotHubs/failover\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 3\",\r\n \"Germany West Central\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Germany North\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"Australia Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-02-01-preview\",\r\n \"2019-07-01-preview\",\r\n \"2019-03-22-preview\",\r\n \"2018-12-01-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 ],\r\n \"apiVersions\": [\r\n \"2021-02-01-preview\",\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/a386d5ea-ea90-441a-8263-d816368c84a1/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 \"roleDefinitionId\": \"d04fc6c0-fc10-4ab8-b7de-c979247c3b65\"\r\n },\r\n {\r\n \"applicationId\": \"89d10474-74af-4874-99a7-c23c2f643083\",\r\n \"roleDefinitionId\": \"7df22794-26e3-4f94-9d50-a4f0f6e1cb41\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-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 },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"provisioningServiceOperationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-09-01-preview\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations/provisioningServiceOperationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\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\": \"locations\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway EAST\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\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\": \"IotHubs/failover\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-04-30-preview\",\r\n \"2021-07-02-preview\",\r\n \"2021-07-02\",\r\n \"2021-07-01-preview\",\r\n \"2021-07-01\",\r\n \"2021-03-31\",\r\n \"2021-03-03-preview\",\r\n \"2021-02-01-preview\",\r\n \"2020-08-31-preview\",\r\n \"2020-08-31\",\r\n \"2020-08-01\",\r\n \"2020-07-10-preview\",\r\n \"2020-06-15\",\r\n \"2020-04-01\",\r\n \"2020-03-01\",\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 },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Central 2\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"France South\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia Central\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Germany West Central\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2022-02-05\",\r\n \"2021-10-15\",\r\n \"2020-03-01\",\r\n \"2020-01-01\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/securitySettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US\",\r\n \"Germany West Central\",\r\n \"Korea South\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"Norway West\",\r\n \"West US 3\",\r\n \"Norway East\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Germany North\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"Qatar Central\",\r\n \"Switzerland North\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Australia Central 2\",\r\n \"Australia Central\"\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps2018?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzMjAxOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourcegroups/ps6245?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlZ3JvdXBzL3BzNjI0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "85cfc4d6-2290-427e-ae25-05c245fcf816" + "80118fd1-aa26-49f0-92f7-8703447f54a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.47" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -85,6 +84,7 @@ "31" ] }, + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "aadb9a00-2d74-4e6f-9d46-4cdba958fd56" + "3ea19a0f-20bc-4f3d-9c3a-20aa3e8523d3" ], "x-ms-correlation-request-id": [ - "aadb9a00-2d74-4e6f-9d46-4cdba958fd56" + "3ea19a0f-20bc-4f3d-9c3a-20aa3e8523d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161155Z:aadb9a00-2d74-4e6f-9d46-4cdba958fd56" + "WESTCENTRALUS:20230216T184345Z:3ea19a0f-20bc-4f3d-9c3a-20aa3e8523d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:11:54 GMT" + "Thu, 16 Feb 2023 18:43:44 GMT" ], "Content-Length": [ "166" @@ -123,26 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018\",\r\n \"name\": \"ps2018\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245\",\r\n \"name\": \"ps6245\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjAxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc0OTQ/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjI0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU0Njg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "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": [ - "bb4ca8cb-497a-4c7c-bd1f-bbba3ff2ff5e" + "c14c2abf-8e3e-4b6a-ab63-4b65cbe9a132" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -151,6 +150,7 @@ "87" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"West US 2\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjEwMjU3NmItZGY0NS00OTk5LWFkMzItNmQwZjQzZjYxZWJkO3JlZ2lvbj13ZXN0dXMy?api-version=2020-03-01&operationSource=other&asyncinfo" + "https://management.azure.com/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmZkZWRkYzUtZGExMi00MmEwLTg2OWItZTZhNjMzNDk1MWIzO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -168,13 +168,13 @@ "4999" ], "x-ms-request-id": [ - "c465b8bd-5f52-4cb3-8ae7-5968b2f13f6e" + "dc7a36c3-e58d-4444-b912-4dd93f9917bc" ], "x-ms-correlation-request-id": [ - "c465b8bd-5f52-4cb3-8ae7-5968b2f13f6e" + "dc7a36c3-e58d-4444-b912-4dd93f9917bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161158Z:c465b8bd-5f52-4cb3-8ae7-5968b2f13f6e" + "WESTCENTRALUS:20230216T184350Z:dc7a36c3-e58d-4444-b912-4dd93f9917bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -183,10 +183,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:11:57 GMT" + "Thu, 16 Feb 2023 18:43:49 GMT" ], "Content-Length": [ - "621" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,25 +195,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494\",\r\n \"name\": \"ps7494\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2018\",\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/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468\",\r\n \"name\": \"ps5468\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6245\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"enableFileUploadNotifications\": false,\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\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/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjEwMjU3NmItZGY0NS00OTk5LWFkMzItNmQwZjQzZjYxZWJkO3JlZ2lvbj13ZXN0dXMy?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FXUTliM05mYVdoZk5qRXdNalUzTm1JdFpHWTBOUzAwT1RrNUxXRmtNekl0Tm1Rd1pqUXpaall4WldKa08zSmxaMmx2YmoxM1pYTjBkWE15P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW90aGVyJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmZkZWRkYzUtZGExMi00MmEwLTg2OWItZTZhNjMzNDk1MWIzO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FXUTliM05mYVdoZlltWmtaV1JrWXpVdFpHRXhNaTAwTW1Fd0xUZzJPV0l0WlRaaE5qTXpORGsxTVdJek8zSmxaMmx2YmoxM1pYTjBkWE15P2FwaS12ZXJzaW9uPTIwMjEtMDctMDImb3BlcmF0aW9uU291cmNlPW90aGVyJmFzeW5jaW5mbw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb4ca8cb-497a-4c7c-bd1f-bbba3ff2ff5e" + "c14c2abf-8e3e-4b6a-ab63-4b65cbe9a132" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -228,13 +228,13 @@ "11999" ], "x-ms-request-id": [ - "bd5f2a8c-4421-4e8a-bb41-facc2eef94ac" + "caf1546c-af97-4c84-a0f0-09e1417ff5bf" ], "x-ms-correlation-request-id": [ - "bd5f2a8c-4421-4e8a-bb41-facc2eef94ac" + "caf1546c-af97-4c84-a0f0-09e1417ff5bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161228Z:bd5f2a8c-4421-4e8a-bb41-facc2eef94ac" + "WESTCENTRALUS:20230216T184420Z:caf1546c-af97-4c84-a0f0-09e1417ff5bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,7 +243,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:12:28 GMT" + "Thu, 16 Feb 2023 18:44:19 GMT" ], "Content-Length": [ "20" @@ -259,21 +259,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjEwMjU3NmItZGY0NS00OTk5LWFkMzItNmQwZjQzZjYxZWJkO3JlZ2lvbj13ZXN0dXMy?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FXUTliM05mYVdoZk5qRXdNalUzTm1JdFpHWTBOUzAwT1RrNUxXRmtNekl0Tm1Rd1pqUXpaall4WldKa08zSmxaMmx2YmoxM1pYTjBkWE15P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW90aGVyJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmZkZWRkYzUtZGExMi00MmEwLTg2OWItZTZhNjMzNDk1MWIzO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FXUTliM05mYVdoZlltWmtaV1JrWXpVdFpHRXhNaTAwTW1Fd0xUZzJPV0l0WlRaaE5qTXpORGsxTVdJek8zSmxaMmx2YmoxM1pYTjBkWE15P2FwaS12ZXJzaW9uPTIwMjEtMDctMDImb3BlcmF0aW9uU291cmNlPW90aGVyJmFzeW5jaW5mbw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb4ca8cb-497a-4c7c-bd1f-bbba3ff2ff5e" + "c14c2abf-8e3e-4b6a-ab63-4b65cbe9a132" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -288,13 +288,13 @@ "11998" ], "x-ms-request-id": [ - "b64c3427-f50f-461e-994d-bec6e69783d2" + "49c5d237-cc0f-4a35-874e-bb2828903bea" ], "x-ms-correlation-request-id": [ - "b64c3427-f50f-461e-994d-bec6e69783d2" + "49c5d237-cc0f-4a35-874e-bb2828903bea" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161258Z:b64c3427-f50f-461e-994d-bec6e69783d2" + "WESTCENTRALUS:20230216T184450Z:49c5d237-cc0f-4a35-874e-bb2828903bea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +303,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:12:58 GMT" + "Thu, 16 Feb 2023 18:44:50 GMT" ], "Content-Length": [ "20" @@ -319,21 +319,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjEwMjU3NmItZGY0NS00OTk5LWFkMzItNmQwZjQzZjYxZWJkO3JlZ2lvbj13ZXN0dXMy?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FXUTliM05mYVdoZk5qRXdNalUzTm1JdFpHWTBOUzAwT1RrNUxXRmtNekl0Tm1Rd1pqUXpaall4WldKa08zSmxaMmx2YmoxM1pYTjBkWE15P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW90aGVyJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmZkZWRkYzUtZGExMi00MmEwLTg2OWItZTZhNjMzNDk1MWIzO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FXUTliM05mYVdoZlltWmtaV1JrWXpVdFpHRXhNaTAwTW1Fd0xUZzJPV0l0WlRaaE5qTXpORGsxTVdJek8zSmxaMmx2YmoxM1pYTjBkWE15P2FwaS12ZXJzaW9uPTIwMjEtMDctMDImb3BlcmF0aW9uU291cmNlPW90aGVyJmFzeW5jaW5mbw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb4ca8cb-497a-4c7c-bd1f-bbba3ff2ff5e" + "c14c2abf-8e3e-4b6a-ab63-4b65cbe9a132" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -348,13 +348,13 @@ "11997" ], "x-ms-request-id": [ - "b9549bd4-9bfe-4643-912c-2e43aec32264" + "5aefcafe-1ba2-44f7-8dae-b6609d50712f" ], "x-ms-correlation-request-id": [ - "b9549bd4-9bfe-4643-912c-2e43aec32264" + "5aefcafe-1ba2-44f7-8dae-b6609d50712f" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161328Z:b9549bd4-9bfe-4643-912c-2e43aec32264" + "WESTCENTRALUS:20230216T184520Z:5aefcafe-1ba2-44f7-8dae-b6609d50712f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,7 +363,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:13:28 GMT" + "Thu, 16 Feb 2023 18:45:20 GMT" ], "Content-Length": [ "20" @@ -379,81 +379,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjEwMjU3NmItZGY0NS00OTk5LWFkMzItNmQwZjQzZjYxZWJkO3JlZ2lvbj13ZXN0dXMy?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FXUTliM05mYVdoZk5qRXdNalUzTm1JdFpHWTBOUzAwT1RrNUxXRmtNekl0Tm1Rd1pqUXpaall4WldKa08zSmxaMmx2YmoxM1pYTjBkWE15P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW90aGVyJmFzeW5jaW5mbw==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmZkZWRkYzUtZGExMi00MmEwLTg2OWItZTZhNjMzNDk1MWIzO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FXUTliM05mYVdoZlltWmtaV1JrWXpVdFpHRXhNaTAwTW1Fd0xUZzJPV0l0WlRaaE5qTXpORGsxTVdJek8zSmxaMmx2YmoxM1pYTjBkWE15P2FwaS12ZXJzaW9uPTIwMjEtMDctMDImb3BlcmF0aW9uU291cmNlPW90aGVyJmFzeW5jaW5mbw==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb4ca8cb-497a-4c7c-bd1f-bbba3ff2ff5e" + "c14c2abf-8e3e-4b6a-ab63-4b65cbe9a132" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "e2e304f2-cd45-4b56-b303-0aeff8e5f6a9" - ], - "x-ms-correlation-request-id": [ - "e2e304f2-cd45-4b56-b303-0aeff8e5f6a9" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20211018T161359Z:e2e304f2-cd45-4b56-b303-0aeff8e5f6a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 18 Oct 2021 16:13:58 GMT" - ], - "Content-Length": [ - "20" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Running\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjEwMjU3NmItZGY0NS00OTk5LWFkMzItNmQwZjQzZjYxZWJkO3JlZ2lvbj13ZXN0dXMy?api-version=2020-03-01&operationSource=other&asyncinfo", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGV2aWNlcy9sb2NhdGlvbnMvd2VzdHVzMi9vcGVyYXRpb25SZXN1bHRzL2FXUTliM05mYVdoZk5qRXdNalUzTm1JdFpHWTBOUzAwT1RrNUxXRmtNekl0Tm1Rd1pqUXpaall4WldKa08zSmxaMmx2YmoxM1pYTjBkWE15P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEmb3BlcmF0aW9uU291cmNlPW90aGVyJmFzeW5jaW5mbw==", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bb4ca8cb-497a-4c7c-bd1f-bbba3ff2ff5e" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -465,16 +405,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-request-id": [ - "81bd5435-5883-4659-8650-51050cc912e3" + "41299443-2de8-4f46-b3e8-fc3702cf941d" ], "x-ms-correlation-request-id": [ - "81bd5435-5883-4659-8650-51050cc912e3" + "41299443-2de8-4f46-b3e8-fc3702cf941d" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161429Z:81bd5435-5883-4659-8650-51050cc912e3" + "WESTCENTRALUS:20230216T184550Z:41299443-2de8-4f46-b3e8-fc3702cf941d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,7 +423,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:14:28 GMT" + "Thu, 16 Feb 2023 18:45:50 GMT" ], "Content-Length": [ "22" @@ -499,21 +439,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjAxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc0OTQ/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjI0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU0Njg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb4ca8cb-497a-4c7c-bd1f-bbba3ff2ff5e" + "c14c2abf-8e3e-4b6a-ab63-4b65cbe9a132" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -525,16 +465,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-request-id": [ - "edb811ac-dd28-45b2-a8d5-0c7b18e3b460" + "3566fe84-922f-4e3d-9299-f342e2031c9f" ], "x-ms-correlation-request-id": [ - "edb811ac-dd28-45b2-a8d5-0c7b18e3b460" + "3566fe84-922f-4e3d-9299-f342e2031c9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161429Z:edb811ac-dd28-45b2-a8d5-0c7b18e3b460" + "WESTCENTRALUS:20230216T184551Z:3566fe84-922f-4e3d-9299-f342e2031c9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -543,10 +483,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:14:28 GMT" + "Thu, 16 Feb 2023 18:45:50 GMT" ], "Content-Length": [ - "1500" + "1579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -555,28 +495,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494\",\r\n \"name\": \"ps7494\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2018\",\r\n \"etag\": \"AAAADFriVXI=\",\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\": \"ps7494.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7494\",\r\n \"endpoint\": \"sb://iothub-ns-ps7494-15425496-f2e593ef62.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468\",\r\n \"name\": \"ps5468\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6245\",\r\n \"etag\": \"AAAADHxV504=\",\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\": \"ps5468.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5468\",\r\n \"endpoint\": \"sb://iothub-ns-ps5468-24619162-846d7d8750.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:43:48.9466667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjAxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc0OTQ/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjI0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU0Njg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb4ca8cb-497a-4c7c-bd1f-bbba3ff2ff5e" + "c14c2abf-8e3e-4b6a-ab63-4b65cbe9a132" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -588,16 +528,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-request-id": [ - "05ff4383-128d-4d9b-9d7d-af39edbb3221" + "711d38da-e300-40ba-a8f4-2f8f3b6de003" ], "x-ms-correlation-request-id": [ - "05ff4383-128d-4d9b-9d7d-af39edbb3221" + "711d38da-e300-40ba-a8f4-2f8f3b6de003" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161430Z:05ff4383-128d-4d9b-9d7d-af39edbb3221" + "WESTCENTRALUS:20230216T184552Z:711d38da-e300-40ba-a8f4-2f8f3b6de003" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -606,10 +546,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:14:29 GMT" + "Thu, 16 Feb 2023 18:45:51 GMT" ], "Content-Length": [ - "1500" + "1579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -618,28 +558,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494\",\r\n \"name\": \"ps7494\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2018\",\r\n \"etag\": \"AAAADFriVXI=\",\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\": \"ps7494.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7494\",\r\n \"endpoint\": \"sb://iothub-ns-ps7494-15425496-f2e593ef62.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468\",\r\n \"name\": \"ps5468\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6245\",\r\n \"etag\": \"AAAADHxV504=\",\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\": \"ps5468.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5468\",\r\n \"endpoint\": \"sb://iothub-ns-ps5468-24619162-846d7d8750.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:43:48.9466667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjAxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc0OTQ/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjI0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU0Njg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abd01c92-2096-4687-bb2c-6674b6bf3b77" + "48751011-373f-40c5-90f9-954bfb7a30a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -651,16 +591,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-request-id": [ - "a1b84d6e-dad5-4c3e-a77f-b66d35f2125e" + "8895d7fb-19f2-4f30-a369-7d1e0e5ab1e0" ], "x-ms-correlation-request-id": [ - "a1b84d6e-dad5-4c3e-a77f-b66d35f2125e" + "8895d7fb-19f2-4f30-a369-7d1e0e5ab1e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161430Z:a1b84d6e-dad5-4c3e-a77f-b66d35f2125e" + "WESTCENTRALUS:20230216T184553Z:8895d7fb-19f2-4f30-a369-7d1e0e5ab1e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,10 +609,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:14:30 GMT" + "Thu, 16 Feb 2023 18:45:53 GMT" ], "Content-Length": [ - "1500" + "1579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -681,28 +621,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494\",\r\n \"name\": \"ps7494\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2018\",\r\n \"etag\": \"AAAADFriVXI=\",\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\": \"ps7494.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7494\",\r\n \"endpoint\": \"sb://iothub-ns-ps7494-15425496-f2e593ef62.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468\",\r\n \"name\": \"ps5468\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6245\",\r\n \"etag\": \"AAAADHxV504=\",\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\": \"ps5468.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5468\",\r\n \"endpoint\": \"sb://iothub-ns-ps5468-24619162-846d7d8750.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:43:48.9466667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjAxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc0OTQ/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjI0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU0Njg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92b08c40-4ccf-47a4-8dae-77d58de26edb" + "d1c39a50-c53d-4a0e-a13b-5fc2295e76e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -714,16 +654,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-request-id": [ - "0aa03dd1-83e1-4297-8f8c-0a5f3861d68e" + "92d858cf-330c-4969-8ad0-00ea4cad0f76" ], "x-ms-correlation-request-id": [ - "0aa03dd1-83e1-4297-8f8c-0a5f3861d68e" + "92d858cf-330c-4969-8ad0-00ea4cad0f76" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161431Z:0aa03dd1-83e1-4297-8f8c-0a5f3861d68e" + "WESTCENTRALUS:20230216T184554Z:92d858cf-330c-4969-8ad0-00ea4cad0f76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,10 +672,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:14:31 GMT" + "Thu, 16 Feb 2023 18:45:54 GMT" ], "Content-Length": [ - "1500" + "1579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -744,28 +684,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494\",\r\n \"name\": \"ps7494\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2018\",\r\n \"etag\": \"AAAADFriVXI=\",\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\": \"ps7494.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7494\",\r\n \"endpoint\": \"sb://iothub-ns-ps7494-15425496-f2e593ef62.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468\",\r\n \"name\": \"ps5468\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6245\",\r\n \"etag\": \"AAAADHxV504=\",\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\": \"ps5468.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5468\",\r\n \"endpoint\": \"sb://iothub-ns-ps5468-24619162-846d7d8750.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:43:48.9466667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjAxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc0OTQ/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjI0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU0Njg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "628904f0-8110-4de7-8593-fedb030aa2c7" + "f2f36e75-c23d-4a4a-97c2-df54b6b45087" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -777,16 +717,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-request-id": [ - "13a6aacb-bf2c-45a9-95fe-c7a2892fc025" + "b241602e-70a6-40be-8b30-13183acb9d25" ], "x-ms-correlation-request-id": [ - "13a6aacb-bf2c-45a9-95fe-c7a2892fc025" + "b241602e-70a6-40be-8b30-13183acb9d25" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161432Z:13a6aacb-bf2c-45a9-95fe-c7a2892fc025" + "WESTCENTRALUS:20230216T184557Z:b241602e-70a6-40be-8b30-13183acb9d25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -795,10 +735,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:14:31 GMT" + "Thu, 16 Feb 2023 18:45:56 GMT" ], "Content-Length": [ - "1500" + "1579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -807,28 +747,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494\",\r\n \"name\": \"ps7494\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2018\",\r\n \"etag\": \"AAAADFriVXI=\",\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\": \"ps7494.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7494\",\r\n \"endpoint\": \"sb://iothub-ns-ps7494-15425496-f2e593ef62.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468\",\r\n \"name\": \"ps5468\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6245\",\r\n \"etag\": \"AAAADHxV504=\",\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\": \"ps5468.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5468\",\r\n \"endpoint\": \"sb://iothub-ns-ps5468-24619162-846d7d8750.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:43:48.9466667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjAxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc0OTQ/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjI0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU0Njg/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc25d7b6-255d-47c7-bcfb-19a5afd31bc9" + "f99b7d58-d65b-4bee-bfcc-3d440f7adebf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -840,16 +780,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-request-id": [ - "81f1a0b4-a7b5-4047-9e07-60874a12bcb1" + "4426f14b-956f-43e6-b4a6-509ed456231e" ], "x-ms-correlation-request-id": [ - "81f1a0b4-a7b5-4047-9e07-60874a12bcb1" + "4426f14b-956f-43e6-b4a6-509ed456231e" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161433Z:81f1a0b4-a7b5-4047-9e07-60874a12bcb1" + "WESTCENTRALUS:20230216T184558Z:4426f14b-956f-43e6-b4a6-509ed456231e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -858,10 +798,10 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:14:32 GMT" + "Thu, 16 Feb 2023 18:45:57 GMT" ], "Content-Length": [ - "1500" + "1579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -870,28 +810,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494\",\r\n \"name\": \"ps7494\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps2018\",\r\n \"etag\": \"AAAADFriVXI=\",\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\": \"ps7494.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps7494\",\r\n \"endpoint\": \"sb://iothub-ns-ps7494-15425496-f2e593ef62.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\"\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468\",\r\n \"name\": \"ps5468\",\r\n \"type\": \"Microsoft.Devices/IotHubs\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"subscriptionid\": \"a386d5ea-ea90-441a-8263-d816368c84a1\",\r\n \"resourcegroup\": \"ps6245\",\r\n \"etag\": \"AAAADHxV504=\",\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\": \"ps5468.azure-devices.net\",\r\n \"eventHubEndpoints\": {\r\n \"events\": {\r\n \"retentionTimeInDays\": 1,\r\n \"partitionCount\": 4,\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"path\": \"ps5468\",\r\n \"endpoint\": \"sb://iothub-ns-ps5468-24619162-846d7d8750.servicebus.windows.net/\"\r\n }\r\n },\r\n \"routing\": {\r\n \"endpoints\": {\r\n \"serviceBusQueues\": [],\r\n \"serviceBusTopics\": [],\r\n \"eventHubs\": [],\r\n \"storageContainers\": []\r\n },\r\n \"routes\": [],\r\n \"fallbackRoute\": {\r\n \"name\": \"$fallback\",\r\n \"source\": \"DeviceMessages\",\r\n \"condition\": \"true\",\r\n \"endpointNames\": [\r\n \"events\"\r\n ],\r\n \"isEnabled\": true\r\n }\r\n },\r\n \"storageEndpoints\": {\r\n \"$default\": {\r\n \"sasTtlAsIso8601\": \"PT1H\",\r\n \"connectionString\": \"Sanitized\",\r\n \"containerName\": \"\"\r\n }\r\n },\r\n \"messagingEndpoints\": {\r\n \"fileNotifications\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"enableFileUploadNotifications\": false,\r\n \"cloudToDevice\": {\r\n \"maxDeliveryCount\": 10,\r\n \"defaultTtlAsIso8601\": \"PT1H\",\r\n \"feedback\": {\r\n \"lockDurationAsIso8601\": \"PT1M\",\r\n \"ttlAsIso8601\": \"PT1H\",\r\n \"maxDeliveryCount\": 10\r\n }\r\n },\r\n \"features\": \"None\",\r\n \"allowedFqdnList\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"systemData\": {\r\n \"createdAt\": \"2023-02-16T18:43:48.9466667Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjAxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc0OTQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjI0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU0NjgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abd01c92-2096-4687-bb2c-6674b6bf3b77" + "48751011-373f-40c5-90f9-954bfb7a30a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -903,16 +843,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "554133d3-47bc-4609-9cc4-8fc49b281ed0" + "f03944ab-4286-4d50-8e0a-c0b7511f2036" ], "x-ms-correlation-request-id": [ - "554133d3-47bc-4609-9cc4-8fc49b281ed0" + "f03944ab-4286-4d50-8e0a-c0b7511f2036" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161431Z:554133d3-47bc-4609-9cc4-8fc49b281ed0" + "WESTCENTRALUS:20230216T184553Z:f03944ab-4286-4d50-8e0a-c0b7511f2036" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -921,7 +861,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:14:30 GMT" + "Thu, 16 Feb 2023 18:45:53 GMT" ], "Content-Length": [ "905" @@ -933,28 +873,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"f5Qiz97CRHNjUUak8iMHL94FSslUoazadgtqOgHmsUs=\",\r\n \"secondaryKey\": \"FkAYnIpSCrIerqXfUOTnIc0X3rnEjdkd3IbU135W4qk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ygXL6TFEMqTXcC7wK61ypydlYKiRCfksx0sUo29o6u4=\",\r\n \"secondaryKey\": \"SuejvcmSZORmyHgBhMw8K4qif+6U4jomLVqGWflC/4U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"2b0hgnnP2eEMi6DkNAHYNN2SaWmle5qzHUiqdfExl9U=\",\r\n \"secondaryKey\": \"YCaq4ZrNgGdx/XcHnCtnv11CYHtrhcxUpxuaSKKtQ5U=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"81tVvaXPufj//WpOM6ezZosMgUAVE2Rv20XZv+1puWg=\",\r\n \"secondaryKey\": \"ifIYCob1+0f+LSEnmcJhgDQakQiIUxr7vcufYScx61A=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"fVm2Hc8G8skpfWWxNa3Jwxw2be0nnJAcH/CdMhrtG1Q=\",\r\n \"secondaryKey\": \"PkWXdy297EQIkKen5XTRuzoqPH0fKZwF5QZdR34IOdo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjAxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc0OTQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjI0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU0NjgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92b08c40-4ccf-47a4-8dae-77d58de26edb" + "d1c39a50-c53d-4a0e-a13b-5fc2295e76e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -969,13 +909,13 @@ "1198" ], "x-ms-request-id": [ - "bd6b0245-cc3c-474a-b203-7fb4af63a562" + "aed813a1-5f36-43e6-9e22-6289faf99bc7" ], "x-ms-correlation-request-id": [ - "bd6b0245-cc3c-474a-b203-7fb4af63a562" + "aed813a1-5f36-43e6-9e22-6289faf99bc7" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161432Z:bd6b0245-cc3c-474a-b203-7fb4af63a562" + "WESTCENTRALUS:20230216T184555Z:aed813a1-5f36-43e6-9e22-6289faf99bc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,7 +924,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:14:31 GMT" + "Thu, 16 Feb 2023 18:45:54 GMT" ], "Content-Length": [ "905" @@ -996,28 +936,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"f5Qiz97CRHNjUUak8iMHL94FSslUoazadgtqOgHmsUs=\",\r\n \"secondaryKey\": \"FkAYnIpSCrIerqXfUOTnIc0X3rnEjdkd3IbU135W4qk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ygXL6TFEMqTXcC7wK61ypydlYKiRCfksx0sUo29o6u4=\",\r\n \"secondaryKey\": \"SuejvcmSZORmyHgBhMw8K4qif+6U4jomLVqGWflC/4U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"2b0hgnnP2eEMi6DkNAHYNN2SaWmle5qzHUiqdfExl9U=\",\r\n \"secondaryKey\": \"YCaq4ZrNgGdx/XcHnCtnv11CYHtrhcxUpxuaSKKtQ5U=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"81tVvaXPufj//WpOM6ezZosMgUAVE2Rv20XZv+1puWg=\",\r\n \"secondaryKey\": \"ifIYCob1+0f+LSEnmcJhgDQakQiIUxr7vcufYScx61A=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"fVm2Hc8G8skpfWWxNa3Jwxw2be0nnJAcH/CdMhrtG1Q=\",\r\n \"secondaryKey\": \"PkWXdy297EQIkKen5XTRuzoqPH0fKZwF5QZdR34IOdo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjAxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc0OTQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjI0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU0NjgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "628904f0-8110-4de7-8593-fedb030aa2c7" + "f2f36e75-c23d-4a4a-97c2-df54b6b45087" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1029,16 +969,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "f0b9a5d9-2c46-4862-9dd6-8d2c18c4f494" + "026c0a33-cc86-4e35-a919-18399fab1f42" ], "x-ms-correlation-request-id": [ - "f0b9a5d9-2c46-4862-9dd6-8d2c18c4f494" + "026c0a33-cc86-4e35-a919-18399fab1f42" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161432Z:f0b9a5d9-2c46-4862-9dd6-8d2c18c4f494" + "WESTCENTRALUS:20230216T184557Z:026c0a33-cc86-4e35-a919-18399fab1f42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1047,7 +987,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:14:32 GMT" + "Thu, 16 Feb 2023 18:45:57 GMT" ], "Content-Length": [ "905" @@ -1059,28 +999,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"f5Qiz97CRHNjUUak8iMHL94FSslUoazadgtqOgHmsUs=\",\r\n \"secondaryKey\": \"FkAYnIpSCrIerqXfUOTnIc0X3rnEjdkd3IbU135W4qk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ygXL6TFEMqTXcC7wK61ypydlYKiRCfksx0sUo29o6u4=\",\r\n \"secondaryKey\": \"SuejvcmSZORmyHgBhMw8K4qif+6U4jomLVqGWflC/4U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"2b0hgnnP2eEMi6DkNAHYNN2SaWmle5qzHUiqdfExl9U=\",\r\n \"secondaryKey\": \"YCaq4ZrNgGdx/XcHnCtnv11CYHtrhcxUpxuaSKKtQ5U=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"81tVvaXPufj//WpOM6ezZosMgUAVE2Rv20XZv+1puWg=\",\r\n \"secondaryKey\": \"ifIYCob1+0f+LSEnmcJhgDQakQiIUxr7vcufYScx61A=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"fVm2Hc8G8skpfWWxNa3Jwxw2be0nnJAcH/CdMhrtG1Q=\",\r\n \"secondaryKey\": \"PkWXdy297EQIkKen5XTRuzoqPH0fKZwF5QZdR34IOdo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps2018/providers/Microsoft.Devices/IotHubs/ps7494/listkeys?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzMjAxOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczc0OTQvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==", + "RequestUri": "/subscriptions/a386d5ea-ea90-441a-8263-d816368c84a1/resourceGroups/ps6245/providers/Microsoft.Devices/IotHubs/ps5468/listkeys?api-version=2021-07-02", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTM4NmQ1ZWEtZWE5MC00NDFhLTgyNjMtZDgxNjM2OGM4NGExL3Jlc291cmNlR3JvdXBzL3BzNjI0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRldmljZXMvSW90SHVicy9wczU0NjgvbGlzdGtleXM/YXBpLXZlcnNpb249MjAyMS0wNy0wMg==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc25d7b6-255d-47c7-bcfb-19a5afd31bc9" + "f99b7d58-d65b-4bee-bfcc-3d440f7adebf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29719.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.IotHub.IotHubClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.25302", + "Microsoft.Azure.Management.IotHub.IotHubClient/4.2.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1092,16 +1032,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-request-id": [ - "20eefa03-c64b-4140-8377-4f255bf19390" + "1193de54-b235-42c8-b701-700770457417" ], "x-ms-correlation-request-id": [ - "20eefa03-c64b-4140-8377-4f255bf19390" + "1193de54-b235-42c8-b701-700770457417" ], "x-ms-routing-request-id": [ - "WESTUS2:20211018T161433Z:20eefa03-c64b-4140-8377-4f255bf19390" + "WESTCENTRALUS:20230216T184559Z:1193de54-b235-42c8-b701-700770457417" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,7 +1050,7 @@ "nosniff" ], "Date": [ - "Mon, 18 Oct 2021 16:14:32 GMT" + "Thu, 16 Feb 2023 18:45:58 GMT" ], "Content-Length": [ "905" @@ -1122,15 +1062,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"f5Qiz97CRHNjUUak8iMHL94FSslUoazadgtqOgHmsUs=\",\r\n \"secondaryKey\": \"FkAYnIpSCrIerqXfUOTnIc0X3rnEjdkd3IbU135W4qk=\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"ygXL6TFEMqTXcC7wK61ypydlYKiRCfksx0sUo29o6u4=\",\r\n \"secondaryKey\": \"SuejvcmSZORmyHgBhMw8K4qif+6U4jomLVqGWflC/4U=\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"2b0hgnnP2eEMi6DkNAHYNN2SaWmle5qzHUiqdfExl9U=\",\r\n \"secondaryKey\": \"YCaq4ZrNgGdx/XcHnCtnv11CYHtrhcxUpxuaSKKtQ5U=\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"81tVvaXPufj//WpOM6ezZosMgUAVE2Rv20XZv+1puWg=\",\r\n \"secondaryKey\": \"ifIYCob1+0f+LSEnmcJhgDQakQiIUxr7vcufYScx61A=\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"fVm2Hc8G8skpfWWxNa3Jwxw2be0nnJAcH/CdMhrtG1Q=\",\r\n \"secondaryKey\": \"PkWXdy297EQIkKen5XTRuzoqPH0fKZwF5QZdR34IOdo=\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"keyName\": \"iothubowner\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite, ServiceConnect, DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"service\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"ServiceConnect\"\r\n },\r\n {\r\n \"keyName\": \"device\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"DeviceConnect\"\r\n },\r\n {\r\n \"keyName\": \"registryRead\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryRead\"\r\n },\r\n {\r\n \"keyName\": \"registryReadWrite\",\r\n \"primaryKey\": \"Sanitized\",\r\n \"secondaryKey\": \"Sanitized\",\r\n \"rights\": \"RegistryWrite\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "Test-AzureRmIotHubTracing": [ - "ps7494", - "ps2018", - "ps7969" + "ps5468", + "ps6245", + "ps5528" ] }, "Variables": { diff --git a/src/IotHub/IotHub/ChangeLog.md b/src/IotHub/IotHub/ChangeLog.md index d0c4376c34f0..66138111d650 100644 --- a/src/IotHub/IotHub/ChangeLog.md +++ b/src/IotHub/IotHub/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated IoT Hub Management SDK to version 4.2.0 (api-version 2021-07-02) +* Fixed `Get-AzIoTHub` to work with DigiCert hubs ## Version 2.7.4 * Updated IoT Hub Management SDK to version 4.1.0 (api-version 2021-07-10) diff --git a/src/IotHub/IotHub/IotHub.csproj b/src/IotHub/IotHub/IotHub.csproj index 4b1da058e18e..b972ebc3280c 100644 --- a/src/IotHub/IotHub/IotHub.csproj +++ b/src/IotHub/IotHub/IotHub.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/IotHub/IotHub/IotHub/AddAzureRmIotHubCertificate.cs b/src/IotHub/IotHub/IotHub/AddAzureRmIotHubCertificate.cs index ede9f0cce5a1..615af2925a75 100644 --- a/src/IotHub/IotHub/IotHub/AddAzureRmIotHubCertificate.cs +++ b/src/IotHub/IotHub/IotHub/AddAzureRmIotHubCertificate.cs @@ -142,11 +142,11 @@ public override void ExecuteCmdlet() { certificate = Encoding.UTF8.GetString(Encoding.UTF8.GetBytes(certificate)); - CertificateBodyDescription certificateBodyDescription = new CertificateBodyDescription(); - certificateBodyDescription.Certificate = certificate; + CertificateProperties certificateProperties = new CertificateProperties(); + certificateProperties.Certificate = certificate; CertificateDescription certificateDescription; - certificateDescription = this.IotHubClient.Certificates.CreateOrUpdate(this.ResourceGroupName, this.Name, this.CertificateName, this.Etag, certificateBodyDescription.Certificate); + certificateDescription = this.IotHubClient.Certificates.CreateOrUpdate(this.ResourceGroupName, this.Name, this.CertificateName, this.Etag, certificateProperties); this.WriteObject(IotHubUtils.ToPSCertificateDescription(certificateDescription)); diff --git a/src/IotHub/IotHub/IotHub/AddAzureRmIotHubEventHubConsumerGroup.cs b/src/IotHub/IotHub/IotHub/AddAzureRmIotHubEventHubConsumerGroup.cs index 803edc03d67f..b0aa6177ce83 100644 --- a/src/IotHub/IotHub/IotHub/AddAzureRmIotHubEventHubConsumerGroup.cs +++ b/src/IotHub/IotHub/IotHub/AddAzureRmIotHubEventHubConsumerGroup.cs @@ -55,7 +55,8 @@ public override void ExecuteCmdlet() string eventsEndpointName = "events"; if (ShouldProcess(EventHubConsumerGroupName, Properties.Resources.AddEventHubConsumerGroup)) { - this.IotHubClient.IotHubResource.CreateEventHubConsumerGroup(this.ResourceGroupName, this.Name, eventsEndpointName, this.EventHubConsumerGroupName); + EventHubConsumerGroupName properties = new EventHubConsumerGroupName(this.EventHubConsumerGroupName); + this.IotHubClient.IotHubResource.CreateEventHubConsumerGroup(this.ResourceGroupName, this.Name, eventsEndpointName, this.EventHubConsumerGroupName, properties); IEnumerable iotHubEHConsumerGroups = this.IotHubClient.IotHubResource.ListEventHubConsumerGroups(this.ResourceGroupName, this.Name, eventsEndpointName); this.WriteObject(IotHubUtils.ToPSEventHubConsumerGroupInfo(iotHubEHConsumerGroups), true); } diff --git a/src/IotHub/IotHub/Models/PSCapabilities.cs b/src/IotHub/IotHub/Models/PSCapabilities.cs index b0799017954e..2dee24ec387f 100644 --- a/src/IotHub/IotHub/Models/PSCapabilities.cs +++ b/src/IotHub/IotHub/Models/PSCapabilities.cs @@ -22,6 +22,7 @@ public enum PSCapabilities { None = 0, DeviceManagement = 1, - GWV2 = 2 + GWV2 = 2, + RootCertificateV2 = 3 } }