diff --git a/.azure-pipelines/SyncDocsConfig.json b/.azure-pipelines/SyncDocsConfig.json
new file mode 100644
index 000000000000..6d51efb367b3
--- /dev/null
+++ b/.azure-pipelines/SyncDocsConfig.json
@@ -0,0 +1,7 @@
+{
+ "SyncPath": [
+ "documentation/breaking-changes/upcoming-breaking-changes.md"
+ ],
+ "UnSyncPath": [
+ ]
+}
diff --git a/.azure-pipelines/release-test.yml b/.azure-pipelines/release-test.yml
index b898713a3271..ae1e065e536e 100644
--- a/.azure-pipelines/release-test.yml
+++ b/.azure-pipelines/release-test.yml
@@ -14,7 +14,7 @@ parameters:
- name: ps7_2
displayName: PowerShell 7.2.x Version
type: string
- default: 7.2.*
+ default: 7.2.8
- name: ps7_3
displayName: PowerShell 7.3.x Version
type: string
@@ -198,4 +198,4 @@ jobs:
agentPoolName: ${{ variables.macOsAgentPoolName }}
agentPoolVMImage: ${{ variables.macOsAgentPoolVMImage }}
psVersion: ${{ parameters.preview_ps }}
- netCoreVersion: ${{ parameters.netCoreVersion_7 }}
\ No newline at end of file
+ netCoreVersion: ${{ parameters.netCoreVersion_7 }}
diff --git a/.azure-pipelines/sync-MSdoc.yml b/.azure-pipelines/sync-MSdoc.yml
new file mode 100644
index 000000000000..53db11a6207a
--- /dev/null
+++ b/.azure-pipelines/sync-MSdoc.yml
@@ -0,0 +1,56 @@
+resources:
+ repositories:
+ - repository: self
+ type: git
+ ref: main
+
+trigger:
+ branches:
+ include:
+ - main
+ paths:
+ include:
+ - documentation\breaking-changes\upcoming-breaking-changes.md
+
+variables:
+ TargetedRepo: azure-docs-powershell
+ TargetedBranchName: sync-upcoming-breaking-changes
+ GithubToken: $(GITHUB_TOKEN)
+
+jobs:
+- job: Sync
+ displayName: Sync task
+ condition: succeeded()
+ strategy:
+ matrix:
+ Generation:
+ BranchName: ${{ variables.TargetedBranchName }}
+
+ steps:
+ - task: PowerShell@2
+ displayName: Sync branch
+ inputs:
+ targetType: inline
+ script: >-
+ ./tools/SyncDocsToMicrosoftDocsOrg.ps1 -BranchName $(BranchName) -GithubToken $(GithubToken)
+ pwsh: true
+
+ - pwsh: |
+ $Title = "Sync upcoming breaking changes docs from Azure/azure-powershell repo"
+ $HeadBranch = "$(BranchName)"
+ $BaseBranch = "main"
+ $Description = "Sync latest upcoming breaking changes doc from Azure/azure-powershell repo."
+ $Headers = @{"Accept" = "application/vnd.github+json"; "Authorization" = "Bearer $(GithubToken)"}
+ $PrBody = @"
+
+
+ ## Description
+ $Description
+
+
+ "@
+ $RequestBody = @{"title" = $Title; "body" = $PrBody; "head" = $HeadBranch; "base" = $BaseBranch }
+ Invoke-WebRequest -Uri https://api.github.com/repos/MicrosoftDocs/azure-docs-powershell/pulls -method POST -Headers $Headers -Body ($RequestBody | ConvertTo-Json)
+
+ continueOnError: true
+ displayName: Create PR to main branch
\ No newline at end of file
diff --git a/.azure-pipelines/sync-aliases.yml b/.azure-pipelines/sync-aliases.yml
index 3a23dc628122..1a1e4d226524 100644
--- a/.azure-pipelines/sync-aliases.yml
+++ b/.azure-pipelines/sync-aliases.yml
@@ -14,20 +14,29 @@ jobs:
./tools/Github/ParseWiki2Json.ps1 -ADOToken $(ADOToken)
displayName: Update fabricbot.json file locally
- - task: PowerShell@2
- displayName: Git commit and push
- inputs:
- targetType: inline
- script: |
- git config --global user.email "65331932+azure-powershell-bot@users.noreply.github.com"
- git config --global user.name "azure-powershell-bot"
- git checkout -b "internal/sync-fabricbot-json"
+ - pwsh: |
+ $gitStatus = git status -s
+ if (-not $gitStatus) {
+ Write-Host "The wiki has no changes ."
+ Write-Host "##vso[task.setvariable variable=ChangesDetected]false"
+ } else {
+ Write-Host "There are changes in the repository."
+ Write-Host "##vso[task.setvariable variable=ChangesDetected]true"
+ }
+ displayName: Check if Wiki table has any changes
+
+ - pwsh: |
+ git config --global user.email "65331932+azure-powershell-bot@users.noreply.github.com"
+ git config --global user.name "azure-powershell-bot"
+ git checkout -b "internal/sync-fabricbot-json"
- git add .
- git commit -m "Sync fabricbot.json"
+ git add .
+ git commit -m "Sync fabricbot.json"
- git remote set-url origin https://$(BotAccessToken)@github.com/Azure/azure-powershell.git;
- git push origin internal/sync-fabricbot-json --force
+ git remote set-url origin https://azure-powershell-bot:$(BotAccessToken)@github.com/Azure/azure-powershell.git;
+ git push origin internal/sync-fabricbot-json --force
+ displayName: Git commit and push
+ condition: and(succeeded(), eq(variables['ChangesDetected'], 'true'))
- pwsh: |
$Title = "Sync fabricbot.json According To ADO Wiki Page"
@@ -36,4 +45,4 @@ jobs:
$Description = "This PR sync taskType: scheduledAndTrigger part of fabricbot.json from table of Service-Team-Label-and-Contact-List in ADO wiki page"
./tools/Github/CreatePR.ps1 -Title $Title -HeadBranch $HeadBranch -BaseBranch $BaseBranch -BotAccessToken $(BotAccessToken) -Description $Description
displayName: Create PR to main branch
-
\ No newline at end of file
+ condition: and(succeeded(), eq(variables['ChangesDetected'], 'true'))
diff --git a/.ci-config.json b/.ci-config.json
index 16c9d510be2e..6aff884ffc49 100644
--- a/.ci-config.json
+++ b/.ci-config.json
@@ -114,7 +114,8 @@
"signature:module",
"test:dependence-module",
"file-change:module",
- "ux:module"
+ "ux:module",
+ "cmdlet-diff:module"
]
},
{
diff --git a/.github/fabricbot.json b/.github/fabricbot.json
index ea34e9840538..4039d9adfefc 100644
--- a/.github/fabricbot.json
+++ b/.github/fabricbot.json
@@ -1064,7 +1064,7 @@
],
"mentionees": [
"mojayara",
- "Prasanna-Padmanabhan"
+ "jportugal0"
]
},
{
@@ -2231,7 +2231,7 @@
"Migrate"
],
"mentionees": [
- "shijojoy"
+ "prsadhu-ms-idc"
]
},
{
diff --git a/build.proj b/build.proj
index e14d0def7ede..357c6364a88e 100644
--- a/build.proj
+++ b/build.proj
@@ -236,7 +236,6 @@
-
diff --git a/src/ADDomainServices/help/New-AzADDomainServiceForestTrustObject.md b/src/ADDomainServices/help/New-AzADDomainServiceForestTrustObject.md
index fa816704b4e6..e21b36bb8531 100644
--- a/src/ADDomainServices/help/New-AzADDomainServiceForestTrustObject.md
+++ b/src/ADDomainServices/help/New-AzADDomainServiceForestTrustObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.ADDomainServices
-online version: https://learn.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceForestTrustObject
+online version: https://learn.microsoft.com/powershell/module/az.addomainservices/new-azaddomainserviceforesttrustobject
schema: 2.0.0
---
diff --git a/src/ADDomainServices/help/New-AzADDomainServiceReplicaSetObject.md b/src/ADDomainServices/help/New-AzADDomainServiceReplicaSetObject.md
index 321a89d8cfa4..ae88a8c9e97f 100644
--- a/src/ADDomainServices/help/New-AzADDomainServiceReplicaSetObject.md
+++ b/src/ADDomainServices/help/New-AzADDomainServiceReplicaSetObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.ADDomainServices
-online version: https://learn.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceReplicaSetObject
+online version: https://learn.microsoft.com/powershell/module/az.addomainservices/new-azaddomainservicereplicasetobject
schema: 2.0.0
---
diff --git a/src/Accounts/Accounts/Utilities/CommandMappings.json b/src/Accounts/Accounts/Utilities/CommandMappings.json
index 6eaf799346a0..8fe414a0434a 100644
--- a/src/Accounts/Accounts/Utilities/CommandMappings.json
+++ b/src/Accounts/Accounts/Utilities/CommandMappings.json
@@ -4316,6 +4316,7 @@
"Remove-AzNetworkManagerManagementGroupConnection": {},
"Set-AzNetworkManagerManagementGroupConnection": {},
"Get-AzFirewallLearnedIpPrefix": {},
+ "New-AzFirewallPolicySnat": {},
"List-AzApplicationGatewayAvailableWafRuleSets": {},
"List-AzApplicationGatewayAvailableSslOptions": {},
"List-AzApplicationGatewaySslPredefinedPolicy": {},
@@ -4535,7 +4536,11 @@
"Start-AzPolicyRemediation": {},
"Stop-AzPolicyRemediation": {},
"Get-AzPolicyMetadata": {},
- "Start-AzPolicyComplianceScan": {}
+ "Start-AzPolicyComplianceScan": {},
+ "New-AzPolicyAttestation": {},
+ "Get-AzPolicyAttestation": {},
+ "Set-AzPolicyAttestation": {},
+ "Remove-AzPolicyAttestation": {}
},
"Az.Portal": {
"Get-AzPortalDashboard": {},
@@ -5577,6 +5582,7 @@
"Get-AzServiceLinkerConfigurationForContainerApp": {},
"Get-AzServiceLinkerConfigurationForSpringCloud": {},
"Get-AzServiceLinkerConfigurationForWebApp": {},
+ "Get-AzServiceLinkerConfigurationName": {},
"Get-AzServiceLinkerForContainerApp": {},
"Get-AzServiceLinkerForSpringCloud": {},
"Get-AzServiceLinkerForWebApp": {},
@@ -5591,7 +5597,7 @@
"New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject": {},
"New-AzServiceLinkerUserAssignedIdentityAuthInfoObject": {},
"Remove-AzServiceLinkerForContainerApp": {},
- "Remove-AzServiceLinkerForSpringcloud": {},
+ "Remove-AzServiceLinkerForSpringCloud": {},
"Remove-AzServiceLinkerForWebApp": {},
"Test-AzServiceLinkerForContainerApp": {},
"Test-AzServiceLinkerForSpringCloud": {},
diff --git a/src/AlertsManagement/AlertsManagement/help/Get-AzAlertProcessingRule.md b/src/AlertsManagement/AlertsManagement/help/Get-AzAlertProcessingRule.md
index d94f777bdf42..50c0efdbbf6e 100644
--- a/src/AlertsManagement/AlertsManagement/help/Get-AzAlertProcessingRule.md
+++ b/src/AlertsManagement/AlertsManagement/help/Get-AzAlertProcessingRule.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.dll-Help.xml
Module Name: Az.AlertsManagement
-online version: https://learn.microsoft.com/powershell/module/az.alertsmanagement/get-azactionrule
+online version: https://learn.microsoft.com/powershell/module/az.alertsmanagement/get-azalertprocessingrule
schema: 2.0.0
---
diff --git a/src/AlertsManagement/AlertsManagement/help/Remove-AzAlertProcessingRule.md b/src/AlertsManagement/AlertsManagement/help/Remove-AzAlertProcessingRule.md
index a6ef2e4fd25f..79e106f44488 100644
--- a/src/AlertsManagement/AlertsManagement/help/Remove-AzAlertProcessingRule.md
+++ b/src/AlertsManagement/AlertsManagement/help/Remove-AzAlertProcessingRule.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.dll-Help.xml
Module Name: Az.AlertsManagement
-online version: https://learn.microsoft.com/powershell/module/az.alertsmanagement/remove-azactionrule
+online version: https://learn.microsoft.com/powershell/module/az.alertsmanagement/remove-azalertprocessingrule
schema: 2.0.0
---
diff --git a/src/AlertsManagement/AlertsManagement/help/Set-AzAlertProcessingRule.md b/src/AlertsManagement/AlertsManagement/help/Set-AzAlertProcessingRule.md
index 444a17d3e50d..ac9b7e3e2211 100644
--- a/src/AlertsManagement/AlertsManagement/help/Set-AzAlertProcessingRule.md
+++ b/src/AlertsManagement/AlertsManagement/help/Set-AzAlertProcessingRule.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.dll-Help.xml
Module Name: Az.AlertsManagement
-online version: https://learn.microsoft.com/powershell/module/az.alertsmanagement/set-azactionrule
+online version: https://learn.microsoft.com/powershell/module/az.alertsmanagement/set-azalertprocessingrule
schema: 2.0.0
---
diff --git a/src/AlertsManagement/AlertsManagement/help/Update-AzAlertProcessingRule.md b/src/AlertsManagement/AlertsManagement/help/Update-AzAlertProcessingRule.md
index 095ee21bdac5..c7d82ceb70e6 100644
--- a/src/AlertsManagement/AlertsManagement/help/Update-AzAlertProcessingRule.md
+++ b/src/AlertsManagement/AlertsManagement/help/Update-AzAlertProcessingRule.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.AlertsManagement.dll-Help.xml
Module Name: Az.AlertsManagement
-online version: https://learn.microsoft.com/powershell/module/az.alertsmanagement/update-azactionrule
+online version: https://learn.microsoft.com/powershell/module/az.alertsmanagement/update-azalertprocessingrule
schema: 2.0.0
---
diff --git a/src/App/help/New-AzContainerAppCustomDomainObject.md b/src/App/help/New-AzContainerAppCustomDomainObject.md
index 27cc981960e2..1504bc977f2e 100644
--- a/src/App/help/New-AzContainerAppCustomDomainObject.md
+++ b/src/App/help/New-AzContainerAppCustomDomainObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.App
-online version: https://learn.microsoft.com/powershell/module/az./new-azcontainerappcustomdomainobject
+online version: https://learn.microsoft.com/powershell/module/az.app/new-azcontainerappcustomdomainobject
schema: 2.0.0
---
diff --git a/src/App/help/New-AzContainerAppDaprMetadataObject.md b/src/App/help/New-AzContainerAppDaprMetadataObject.md
index 34c2e9f9f719..bb1f6732b5ac 100644
--- a/src/App/help/New-AzContainerAppDaprMetadataObject.md
+++ b/src/App/help/New-AzContainerAppDaprMetadataObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.App
-online version: https://learn.microsoft.com/powershell/module/az./new-azcontainerappdaprmetadataobject
+online version: https://learn.microsoft.com/powershell/module/az.app/new-azcontainerappdaprmetadataobject
schema: 2.0.0
---
diff --git a/src/App/help/New-AzContainerAppEnvironmentVarObject.md b/src/App/help/New-AzContainerAppEnvironmentVarObject.md
index bad218b9a969..4fc3ff0e9b64 100644
--- a/src/App/help/New-AzContainerAppEnvironmentVarObject.md
+++ b/src/App/help/New-AzContainerAppEnvironmentVarObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.App
-online version: https://learn.microsoft.com/powershell/module/az./new-azcontainerappenvironmentvarobject
+online version: https://learn.microsoft.com/powershell/module/az.app/new-azcontainerappenvironmentvarobject
schema: 2.0.0
---
diff --git a/src/App/help/New-AzContainerAppIdentityProviderObject.md b/src/App/help/New-AzContainerAppIdentityProviderObject.md
index eea798750e94..8425fbfbaff5 100644
--- a/src/App/help/New-AzContainerAppIdentityProviderObject.md
+++ b/src/App/help/New-AzContainerAppIdentityProviderObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.App
-online version: https://learn.microsoft.com/powershell/module/az./new-azcontainerappidentityproviderobject
+online version: https://learn.microsoft.com/powershell/module/az.app/new-azcontainerappidentityproviderobject
schema: 2.0.0
---
diff --git a/src/App/help/New-AzContainerAppProbeHeaderObject.md b/src/App/help/New-AzContainerAppProbeHeaderObject.md
index 9919a0b10b07..f2d4085299a5 100644
--- a/src/App/help/New-AzContainerAppProbeHeaderObject.md
+++ b/src/App/help/New-AzContainerAppProbeHeaderObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.App
-online version: https://learn.microsoft.com/powershell/module/az./new-azcontainerappprobeheaderobject
+online version: https://learn.microsoft.com/powershell/module/az.app/new-azcontainerappprobeheaderobject
schema: 2.0.0
---
diff --git a/src/App/help/New-AzContainerAppProbeObject.md b/src/App/help/New-AzContainerAppProbeObject.md
index 446723a1abc0..6cd2bfc654ae 100644
--- a/src/App/help/New-AzContainerAppProbeObject.md
+++ b/src/App/help/New-AzContainerAppProbeObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.App
-online version: https://learn.microsoft.com/powershell/module/az./new-azcontainerappprobeobject
+online version: https://learn.microsoft.com/powershell/module/az.app/new-azcontainerappprobeobject
schema: 2.0.0
---
diff --git a/src/App/help/New-AzContainerAppRegistryCredentialObject.md b/src/App/help/New-AzContainerAppRegistryCredentialObject.md
index bec433f08e6e..6f654bb8f626 100644
--- a/src/App/help/New-AzContainerAppRegistryCredentialObject.md
+++ b/src/App/help/New-AzContainerAppRegistryCredentialObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.App
-online version: https://learn.microsoft.com/powershell/module/az./new-azcontainerappregistrycredentialobject
+online version: https://learn.microsoft.com/powershell/module/az.app/new-azcontainerappregistrycredentialobject
schema: 2.0.0
---
diff --git a/src/App/help/New-AzContainerAppScaleRuleAuthObject.md b/src/App/help/New-AzContainerAppScaleRuleAuthObject.md
index 0523f7361500..654d758172aa 100644
--- a/src/App/help/New-AzContainerAppScaleRuleAuthObject.md
+++ b/src/App/help/New-AzContainerAppScaleRuleAuthObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.App
-online version: https://learn.microsoft.com/powershell/module/az./new-azcontainerappscaleruleauthobject
+online version: https://learn.microsoft.com/powershell/module/az.app/new-azcontainerappscaleruleauthobject
schema: 2.0.0
---
diff --git a/src/App/help/New-AzContainerAppScaleRuleObject.md b/src/App/help/New-AzContainerAppScaleRuleObject.md
index 1fb1d6e89d0a..b58b4578529a 100644
--- a/src/App/help/New-AzContainerAppScaleRuleObject.md
+++ b/src/App/help/New-AzContainerAppScaleRuleObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.App
-online version: https://learn.microsoft.com/powershell/module/az./new-azcontainerappscaleruleobject
+online version: https://learn.microsoft.com/powershell/module/az.app/new-azcontainerappscaleruleobject
schema: 2.0.0
---
diff --git a/src/App/help/New-AzContainerAppSecretObject.md b/src/App/help/New-AzContainerAppSecretObject.md
index a982d60e5e38..499219b5ba8d 100644
--- a/src/App/help/New-AzContainerAppSecretObject.md
+++ b/src/App/help/New-AzContainerAppSecretObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.App
-online version: https://learn.microsoft.com/powershell/module/az./new-azcontainerappsecretobject
+online version: https://learn.microsoft.com/powershell/module/az.app/new-azcontainerappsecretobject
schema: 2.0.0
---
diff --git a/src/App/help/New-AzContainerAppTemplateObject.md b/src/App/help/New-AzContainerAppTemplateObject.md
index d92ea06c2b48..d7a4696cd05e 100644
--- a/src/App/help/New-AzContainerAppTemplateObject.md
+++ b/src/App/help/New-AzContainerAppTemplateObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.App
-online version: https://learn.microsoft.com/powershell/module/az./new-azcontainerapptemplateobject
+online version: https://learn.microsoft.com/powershell/module/az.app/new-azcontainerapptemplateobject
schema: 2.0.0
---
diff --git a/src/App/help/New-AzContainerAppTrafficWeightObject.md b/src/App/help/New-AzContainerAppTrafficWeightObject.md
index 54f7144f523c..a9c05c36c960 100644
--- a/src/App/help/New-AzContainerAppTrafficWeightObject.md
+++ b/src/App/help/New-AzContainerAppTrafficWeightObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.App
-online version: https://learn.microsoft.com/powershell/module/az./new-azcontainerapptrafficweightobject
+online version: https://learn.microsoft.com/powershell/module/az.app/new-azcontainerapptrafficweightobject
schema: 2.0.0
---
diff --git a/src/App/help/New-AzContainerAppVolumeMountObject.md b/src/App/help/New-AzContainerAppVolumeMountObject.md
index 04029bda330f..60cbdc0acf3f 100644
--- a/src/App/help/New-AzContainerAppVolumeMountObject.md
+++ b/src/App/help/New-AzContainerAppVolumeMountObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.App
-online version: https://learn.microsoft.com/powershell/module/az./new-azcontainerappvolumemountobject
+online version: https://learn.microsoft.com/powershell/module/az.app/new-azcontainerappvolumemountobject
schema: 2.0.0
---
diff --git a/src/App/help/New-AzContainerAppVolumeObject.md b/src/App/help/New-AzContainerAppVolumeObject.md
index d6538b699f2d..5b6e54395abd 100644
--- a/src/App/help/New-AzContainerAppVolumeObject.md
+++ b/src/App/help/New-AzContainerAppVolumeObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.App
-online version: https://learn.microsoft.com/powershell/module/az./new-azcontainerappvolumeobject
+online version: https://learn.microsoft.com/powershell/module/az.app/new-azcontainerappvolumeobject
schema: 2.0.0
---
diff --git a/src/ApplicationInsights/help/Set-AzApplicationInsightsContinuousExport.md b/src/ApplicationInsights/help/Set-AzApplicationInsightsContinuousExport.md
index 8ee23cb8495d..10150bf7e7cc 100644
--- a/src/ApplicationInsights/help/Set-AzApplicationInsightsContinuousExport.md
+++ b/src/ApplicationInsights/help/Set-AzApplicationInsightsContinuousExport.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.ApplicationInsights
-online version: https://learn.microsoft.com/powershell/module/az.applicationinsights/new-azapplicationinsightscontinuousexport
+online version: https://learn.microsoft.com/powershell/module/az.applicationinsights/set-azapplicationinsightscontinuousexport
schema: 2.0.0
---
diff --git a/src/ApplicationInsights/help/Update-AzApplicationInsights.md b/src/ApplicationInsights/help/Update-AzApplicationInsights.md
index 319e91c33203..90e6812697c5 100644
--- a/src/ApplicationInsights/help/Update-AzApplicationInsights.md
+++ b/src/ApplicationInsights/help/Update-AzApplicationInsights.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.ApplicationInsights
-online version: https://learn.microsoft.com/powershell/module/az.applicationinsights/new-azapplicationinsights
+online version: https://learn.microsoft.com/powershell/module/az.applicationinsights/update-azapplicationinsights
schema: 2.0.0
---
diff --git a/src/Automation/Automation/help/Get-AzAutomationHybridRunbookWorker.md b/src/Automation/Automation/help/Get-AzAutomationHybridRunbookWorker.md
index 661cd27dd7f9..cf41ce767b34 100644
--- a/src/Automation/Automation/help/Get-AzAutomationHybridRunbookWorker.md
+++ b/src/Automation/Automation/help/Get-AzAutomationHybridRunbookWorker.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Automation.dll-Help.xml
Module Name: Az.Automation
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.automation/get-azautomationhybridrunbookworker
schema: 2.0.0
---
diff --git a/src/Automation/Automation/help/Get-AzAutomationHybridRunbookWorkerGroup.md b/src/Automation/Automation/help/Get-AzAutomationHybridRunbookWorkerGroup.md
index ac3b36ada682..a70cb19b4ad8 100644
--- a/src/Automation/Automation/help/Get-AzAutomationHybridRunbookWorkerGroup.md
+++ b/src/Automation/Automation/help/Get-AzAutomationHybridRunbookWorkerGroup.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Automation.dll-Help.xml
Module Name: Az.Automation
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.automation/get-azautomationhybridrunbookworkergroup
schema: 2.0.0
---
diff --git a/src/Automation/Automation/help/Get-AzAutomationPython3Package.md b/src/Automation/Automation/help/Get-AzAutomationPython3Package.md
index e85374ad9ea9..250cc92dd371 100644
--- a/src/Automation/Automation/help/Get-AzAutomationPython3Package.md
+++ b/src/Automation/Automation/help/Get-AzAutomationPython3Package.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Automation.dll-Help.xml
Module Name: Az.Automation
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.automation/get-azautomationpython3package
schema: 2.0.0
---
diff --git a/src/Automation/Automation/help/Move-AzAutomationHybridRunbookWorker.md b/src/Automation/Automation/help/Move-AzAutomationHybridRunbookWorker.md
index 0a2147f9d2e2..07ff601ae994 100644
--- a/src/Automation/Automation/help/Move-AzAutomationHybridRunbookWorker.md
+++ b/src/Automation/Automation/help/Move-AzAutomationHybridRunbookWorker.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Automation.dll-Help.xml
Module Name: Az.Automation
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.automation/move-azautomationhybridrunbookworker
schema: 2.0.0
---
diff --git a/src/Automation/Automation/help/New-AzAutomationHybridRunbookWorker.md b/src/Automation/Automation/help/New-AzAutomationHybridRunbookWorker.md
index 2d0b8ec6a5b3..ade289423416 100644
--- a/src/Automation/Automation/help/New-AzAutomationHybridRunbookWorker.md
+++ b/src/Automation/Automation/help/New-AzAutomationHybridRunbookWorker.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Automation.dll-Help.xml
Module Name: Az.Automation
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.automation/new-azautomationhybridrunbookworker
schema: 2.0.0
---
diff --git a/src/Automation/Automation/help/New-AzAutomationHybridRunbookWorkerGroup.md b/src/Automation/Automation/help/New-AzAutomationHybridRunbookWorkerGroup.md
index bd7521ee585c..3dee641dc590 100644
--- a/src/Automation/Automation/help/New-AzAutomationHybridRunbookWorkerGroup.md
+++ b/src/Automation/Automation/help/New-AzAutomationHybridRunbookWorkerGroup.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Automation.dll-Help.xml
Module Name: Az.Automation
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.automation/new-azautomationhybridrunbookworkergroup
schema: 2.0.0
---
diff --git a/src/Automation/Automation/help/New-AzAutomationPython3Package.md b/src/Automation/Automation/help/New-AzAutomationPython3Package.md
index d3b559de2a75..82b920599219 100644
--- a/src/Automation/Automation/help/New-AzAutomationPython3Package.md
+++ b/src/Automation/Automation/help/New-AzAutomationPython3Package.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Automation.dll-Help.xml
Module Name: Az.Automation
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.automation/new-azautomationpython3package
schema: 2.0.0
---
diff --git a/src/Automation/Automation/help/Remove-AzAutomationHybridRunbookWorker.md b/src/Automation/Automation/help/Remove-AzAutomationHybridRunbookWorker.md
index 7f6e68728e42..a89067c2f9f4 100644
--- a/src/Automation/Automation/help/Remove-AzAutomationHybridRunbookWorker.md
+++ b/src/Automation/Automation/help/Remove-AzAutomationHybridRunbookWorker.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Automation.dll-Help.xml
Module Name: Az.Automation
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.automation/remove-azautomationhybridrunbookworker
schema: 2.0.0
---
diff --git a/src/Automation/Automation/help/Remove-AzAutomationHybridRunbookWorkerGroup.md b/src/Automation/Automation/help/Remove-AzAutomationHybridRunbookWorkerGroup.md
index 9054aa458952..7dd9f791b87a 100644
--- a/src/Automation/Automation/help/Remove-AzAutomationHybridRunbookWorkerGroup.md
+++ b/src/Automation/Automation/help/Remove-AzAutomationHybridRunbookWorkerGroup.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Automation.dll-Help.xml
Module Name: Az.Automation
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.automation/remove-azautomationhybridrunbookworkergroup
schema: 2.0.0
---
diff --git a/src/Automation/Automation/help/Remove-AzAutomationPython3Package.md b/src/Automation/Automation/help/Remove-AzAutomationPython3Package.md
index 9738f67b7ad1..70cc57232a71 100644
--- a/src/Automation/Automation/help/Remove-AzAutomationPython3Package.md
+++ b/src/Automation/Automation/help/Remove-AzAutomationPython3Package.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Automation.dll-Help.xml
Module Name: Az.Automation
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.automation/remove-azautomationpython3package
schema: 2.0.0
---
diff --git a/src/Automation/Automation/help/Set-AzAutomationHybridRunbookWorkerGroup.md b/src/Automation/Automation/help/Set-AzAutomationHybridRunbookWorkerGroup.md
index 8b6e88adf215..e2438c6c9e1d 100644
--- a/src/Automation/Automation/help/Set-AzAutomationHybridRunbookWorkerGroup.md
+++ b/src/Automation/Automation/help/Set-AzAutomationHybridRunbookWorkerGroup.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Automation.dll-Help.xml
Module Name: Az.Automation
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.automation/set-azautomationhybridrunbookworkergroup
schema: 2.0.0
---
diff --git a/src/Automation/Automation/help/Set-AzAutomationPython3Package.md b/src/Automation/Automation/help/Set-AzAutomationPython3Package.md
index 10fe2614645a..9665eb9bdacf 100644
--- a/src/Automation/Automation/help/Set-AzAutomationPython3Package.md
+++ b/src/Automation/Automation/help/Set-AzAutomationPython3Package.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Automation.dll-Help.xml
Module Name: Az.Automation
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.automation/set-azautomationpython3package
schema: 2.0.0
---
diff --git a/src/Batch/Batch/help/Get-AzBatchComputeNodeExtension.md b/src/Batch/Batch/help/Get-AzBatchComputeNodeExtension.md
index babf9f2fcf34..783ad9747f67 100644
--- a/src/Batch/Batch/help/Get-AzBatchComputeNodeExtension.md
+++ b/src/Batch/Batch/help/Get-AzBatchComputeNodeExtension.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Batch.dll-Help.xml
Module Name: Az.Batch
-online version: https://learn.microsoft.com/powershell/module/az.batch/get-azbatchcommandnodeextension
+online version: https://learn.microsoft.com/powershell/module/az.batch/get-azbatchcomputenodeextension
schema: 2.0.0
---
diff --git a/src/Batch/Batch/help/Get-AzBatchSupportedVirtualMachineSku.md b/src/Batch/Batch/help/Get-AzBatchSupportedVirtualMachineSku.md
index f54019a0ff38..794a3a5d9d55 100644
--- a/src/Batch/Batch/help/Get-AzBatchSupportedVirtualMachineSku.md
+++ b/src/Batch/Batch/help/Get-AzBatchSupportedVirtualMachineSku.md
@@ -18,6 +18,7 @@ Get-AzBatchSupportedVirtualMachineSku [-Location] [[-MaxResultCount] [-SubscriptionId ] [-Defa
```
## DESCRIPTION
+Gets an CDN profile with the specified profile name under the specified subscription and resource group.
## EXAMPLES
diff --git a/src/Cdn/help/Get-AzFrontDoorCdnProfile.md b/src/Cdn/help/Get-AzFrontDoorCdnProfile.md
index a0f91be3c274..bde3a148ab32 100644
--- a/src/Cdn/help/Get-AzFrontDoorCdnProfile.md
+++ b/src/Cdn/help/Get-AzFrontDoorCdnProfile.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# Get-AzFrontDoorCdnProfile
## SYNOPSIS
-
+Gets an Azure Front Door Standard or Azure Front Door Premium with the specified profile name under the specified subscription and resource group.
## SYNTAX
@@ -35,7 +35,7 @@ Get-AzFrontDoorCdnProfile -ResourceGroupName [-SubscriptionId
## Upcoming Release
+* Added breaking change message for `New-AzVmss`.
+* Added `-PerformancePlus` parameter to `New-AzDiskConfig`
## Version 5.4.0
* Added `-SkipIdentity`, `-PathUserIdentity`, `-IsTest` parameter to `Set-AzVMAEMExtension`
diff --git a/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskConfigCommand.cs b/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskConfigCommand.cs
index a340a1c8f7b4..68bcc737ed18 100644
--- a/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskConfigCommand.cs
+++ b/src/Compute/Compute/Generated/Disk/Config/NewAzureRmDiskConfigCommand.cs
@@ -242,6 +242,12 @@ public partial class NewAzureRmDiskConfigCommand : Microsoft.Azure.Commands.Reso
[PSArgumentCompleter("X64", "Arm64")]
public string Architecture { get; set; }
+ [Parameter(
+ Mandatory = false,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.")]
+ public bool? PerformancePlus { get; set; }
+
protected override void ProcessRecord()
{
if (ShouldProcess("Disk", "New"))
@@ -351,6 +357,15 @@ private void Run()
vCreationData.LogicalSectorSize = this.LogicalSectorSize;
}
+ if (this.IsParameterBound(c => c.PerformancePlus))
+ {
+ if (vCreationData == null)
+ {
+ vCreationData = new CreationData();
+ }
+ vCreationData.PerformancePlus = this.PerformancePlus;
+ }
+
if (this.IsParameterBound(c => c.EncryptionSettingsEnabled))
{
if (vEncryptionSettingsCollection == null)
diff --git a/src/Compute/Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetCreateOrUpdateMethod.cs b/src/Compute/Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetCreateOrUpdateMethod.cs
index f72c03fb682b..6c859ae82f42 100644
--- a/src/Compute/Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetCreateOrUpdateMethod.cs
+++ b/src/Compute/Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetCreateOrUpdateMethod.cs
@@ -37,7 +37,9 @@
namespace Microsoft.Azure.Commands.Compute.Automation
{
- [GenericBreakingChange("Starting in May 2023 the \"New-AzVmss\" cmdlet will deploy with the Trusted Launch configuration by default. To know more about Trusted Launch, please visit https://docs.microsoft.com/en-us/azure/virtual-machines/trusted-launch")]
+ [GenericBreakingChange("Starting May 2023, the \"New-AzVmss\" cmdlet will deploy with the Trusted Launch configuration by default. To know more about Trusted Launch, please visit https://docs.microsoft.com/en-us/azure/virtual-machines/trusted-launch", "6.0.0")]
+ [GenericBreakingChange("Starting May 2023, the \"New-AzVmss\" cmdlet will create a OrchestrationMode: Flexible VMSS by default unless explicitly provded \"-OrchestrationMode Uniform\".", "6.0.0")]
+ [GenericBreakingChange("Starting May 2023, the \"New-AzVmss\" used with \"-OrchestrationMode Flexible\" will allow NAT pool to be configured. Before, VMSS in OrchestrationMode:Flexible defaulted NAT pool to be not configured(null).", "6.0.0")]
[Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Vmss", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)]
[OutputType(typeof(PSVirtualMachineScaleSet))]
public partial class NewAzureRmVmss : ComputeAutomationBaseCmdlet
diff --git a/src/Compute/Compute/help/New-AzDiskConfig.md b/src/Compute/Compute/help/New-AzDiskConfig.md
index 198da3c0a7d3..d3a1c1aabe73 100644
--- a/src/Compute/Compute/help/New-AzDiskConfig.md
+++ b/src/Compute/Compute/help/New-AzDiskConfig.md
@@ -25,7 +25,8 @@ New-AzDiskConfig [[-SkuName] ] [-Tier ] [-LogicalSectorSize ] [-EncryptionType ] [-DiskAccessId ]
[-NetworkAccessPolicy ] [-BurstingEnabled ] [-PublicNetworkAccess ]
[-AcceleratedNetwork ] [-DataAccessAuthMode ] [-Architecture ]
- [-DefaultProfile ] [-WhatIf] [-Confirm] []
+ [-PerformancePlus ] [-DefaultProfile ] [-WhatIf] [-Confirm]
+ []
```
## DESCRIPTION
@@ -484,6 +485,21 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
+### -PerformancePlus
+Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled.
+
+```yaml
+Type: System.Nullable`1[System.Boolean]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
### -PublicNetworkAccess
Policy for controlling export on the disk.
diff --git a/src/Compute/Compute/help/Restart-AzHost.md b/src/Compute/Compute/help/Restart-AzHost.md
index 5b88be143f62..6050fd425ff9 100644
--- a/src/Compute/Compute/help/Restart-AzHost.md
+++ b/src/Compute/Compute/help/Restart-AzHost.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.compute/restart-azhost
schema: 2.0.0
---
diff --git a/src/ConnectedKubernetes/Az.ConnectedKubernetes.csproj b/src/ConnectedKubernetes/Az.ConnectedKubernetes.csproj
index d12c91b7cb5d..f1e10a6218f1 100644
--- a/src/ConnectedKubernetes/Az.ConnectedKubernetes.csproj
+++ b/src/ConnectedKubernetes/Az.ConnectedKubernetes.csproj
@@ -3,7 +3,6 @@
ConnectedKubernetes
-
+
-
diff --git a/src/ConnectedKubernetes/Az.ConnectedKubernetes.psd1 b/src/ConnectedKubernetes/Az.ConnectedKubernetes.psd1
index 786745cdff17..c3a3b306581b 100644
--- a/src/ConnectedKubernetes/Az.ConnectedKubernetes.psd1
+++ b/src/ConnectedKubernetes/Az.ConnectedKubernetes.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 01/12/2022
+# Generated on: 2/17/2023
#
@{
@@ -12,7 +12,7 @@
RootModule = './Az.ConnectedKubernetes.psm1'
# Version number of this module.
-ModuleVersion = '0.7.0'
+ModuleVersion = '0.8.0'
# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
-RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.10.4'; })
+RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.11.2'; })
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = './bin/Az.ConnectedKubernetes.private.dll'
@@ -110,7 +110,10 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Added the logic that prompt legal information when users call the parameter ''-AzureHybridBenefit'' in ''New-AzConnectedKubernetes'' or ''Update-AzConnectedKubernetes''.'
+ ReleaseNotes = '* Added optional configs (-HttpProxy, -HttpsProxy, -NoProxy, -ProxyCert) for connection behind outbound proxy server.
+* Added optional configs (-ContainerLogPath, -DisableAutoUpgrade, -NoWait, -OnboardingTimeout).
+* Fixed invalid URI issue with display name of location.
+* Fixed response can''t be parsed issue with UseBasicParsing.'
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/ConnectedKubernetes/Az.ConnectedKubernetes.psm1 b/src/ConnectedKubernetes/Az.ConnectedKubernetes.psm1
index 32b99aec0909..f0eb94be89c3 100644
--- a/src/ConnectedKubernetes/Az.ConnectedKubernetes.psm1
+++ b/src/ConnectedKubernetes/Az.ConnectedKubernetes.psm1
@@ -33,7 +33,7 @@
}
if(-not $accountsModule) {
- Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. For installation instructions, please see: https://learn.microsoft.com/powershell/azure/install-az-ps" -ErrorAction Stop
+ Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. For installation instructions, please see: https://docs.microsoft.com/powershell/azure/install-az-ps" -ErrorAction Stop
} elseif (($accountsModule.Version -lt [System.Version]'2.7.5') -and (-not $localAccounts)) {
Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to add the switch '-RegenerateSupportModule' when executing 'test-module.ps1'. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop
}
diff --git a/src/ConnectedKubernetes/ChangeLog.md b/src/ConnectedKubernetes/ChangeLog.md
index e11aad1a86f6..d8b30bf2e2f6 100644
--- a/src/ConnectedKubernetes/ChangeLog.md
+++ b/src/ConnectedKubernetes/ChangeLog.md
@@ -19,6 +19,15 @@
-->
## Upcoming Release
+## Version 0.8.0
+* Added optional configs (-HttpProxy, -HttpsProxy, -NoProxy, -ProxyCert) for connection behind outbound proxy server.
+* Added optional configs (-ContainerLogPath, -DisableAutoUpgrade, -NoWait, -OnboardingTimeout).
+* Fixed invalid URI issue with display name of location.
+* Fixed response can't be parsed issue with UseBasicParsing.
+
+## Version 0.7.1
+* Made `New-AzConnectedKubernetes` support PowerShell 5.
+
## Version 0.7.0
* Added the logic that prompt legal information when users call the parameter "-AzureHybridBenefit" in `New-AzConnectedKubernetes` or `Update-AzConnectedKubernetes`.
diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.sln b/src/ConnectedKubernetes/ConnectedKubernetes.sln
index d345ea0579ca..488efd883e40 100644
--- a/src/ConnectedKubernetes/ConnectedKubernetes.sln
+++ b/src/ConnectedKubernetes/ConnectedKubernetes.sln
@@ -1,104 +1,58 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 16
-VisualStudioVersion = 16.6.30114.105
+# Visual Studio Version 17
+VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{827D5D9D-228A-4659-ABAA-2B3B46E4E192}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{C9D8E39F-55C3-43C2-93B6-8F00CEFAF786}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{6193F9CE-3F9A-4069-9265-47F4E2440BF8}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AssemblyLoading", "..\Accounts\AssemblyLoading\AssemblyLoading.csproj", "{3EDD8420-0387-42B9-8430-D3F4300047A1}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{D3034A38-46C3-44B5-9AD3-7AD369CFBD62}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{EB15DC7B-F1FF-4776-AA34-3260552A5A2C}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{8EA0C726-FE60-4EE7-A549-BEC861E985FE}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{51FC081F-09F5-411C-A2A8-6BB46FCB4BBB}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{7A9EB8DF-4E08-4739-B894-E54D7A6F8311}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{42BE450C-B2DE-4958-9F4A-320DFECFD7AE}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ConnectedKubernetes", "Az.ConnectedKubernetes.csproj", "{CD9D5ED3-3724-4AF6-8941-3395986E8D49}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{15CFFEBB-F56F-41BB-845F-2A442E5C7523}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ConnectedKubernetes", "Az.ConnectedKubernetes.csproj", "{0BFCE22D-2CB4-49E1-AD29-B84B382D764B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
- Debug|x64 = Debug|x64
- Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
- Release|x64 = Release|x64
- Release|x86 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {827D5D9D-228A-4659-ABAA-2B3B46E4E192}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {827D5D9D-228A-4659-ABAA-2B3B46E4E192}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {827D5D9D-228A-4659-ABAA-2B3B46E4E192}.Debug|x64.ActiveCfg = Debug|Any CPU
- {827D5D9D-228A-4659-ABAA-2B3B46E4E192}.Debug|x64.Build.0 = Debug|Any CPU
- {827D5D9D-228A-4659-ABAA-2B3B46E4E192}.Debug|x86.ActiveCfg = Debug|Any CPU
- {827D5D9D-228A-4659-ABAA-2B3B46E4E192}.Debug|x86.Build.0 = Debug|Any CPU
- {827D5D9D-228A-4659-ABAA-2B3B46E4E192}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {827D5D9D-228A-4659-ABAA-2B3B46E4E192}.Release|Any CPU.Build.0 = Release|Any CPU
- {827D5D9D-228A-4659-ABAA-2B3B46E4E192}.Release|x64.ActiveCfg = Release|Any CPU
- {827D5D9D-228A-4659-ABAA-2B3B46E4E192}.Release|x64.Build.0 = Release|Any CPU
- {827D5D9D-228A-4659-ABAA-2B3B46E4E192}.Release|x86.ActiveCfg = Release|Any CPU
- {827D5D9D-228A-4659-ABAA-2B3B46E4E192}.Release|x86.Build.0 = Release|Any CPU
- {6193F9CE-3F9A-4069-9265-47F4E2440BF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {6193F9CE-3F9A-4069-9265-47F4E2440BF8}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {6193F9CE-3F9A-4069-9265-47F4E2440BF8}.Debug|x64.ActiveCfg = Debug|Any CPU
- {6193F9CE-3F9A-4069-9265-47F4E2440BF8}.Debug|x64.Build.0 = Debug|Any CPU
- {6193F9CE-3F9A-4069-9265-47F4E2440BF8}.Debug|x86.ActiveCfg = Debug|Any CPU
- {6193F9CE-3F9A-4069-9265-47F4E2440BF8}.Debug|x86.Build.0 = Debug|Any CPU
- {6193F9CE-3F9A-4069-9265-47F4E2440BF8}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {6193F9CE-3F9A-4069-9265-47F4E2440BF8}.Release|Any CPU.Build.0 = Release|Any CPU
- {6193F9CE-3F9A-4069-9265-47F4E2440BF8}.Release|x64.ActiveCfg = Release|Any CPU
- {6193F9CE-3F9A-4069-9265-47F4E2440BF8}.Release|x64.Build.0 = Release|Any CPU
- {6193F9CE-3F9A-4069-9265-47F4E2440BF8}.Release|x86.ActiveCfg = Release|Any CPU
- {6193F9CE-3F9A-4069-9265-47F4E2440BF8}.Release|x86.Build.0 = Release|Any CPU
- {D3034A38-46C3-44B5-9AD3-7AD369CFBD62}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {D3034A38-46C3-44B5-9AD3-7AD369CFBD62}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {D3034A38-46C3-44B5-9AD3-7AD369CFBD62}.Debug|x64.ActiveCfg = Debug|Any CPU
- {D3034A38-46C3-44B5-9AD3-7AD369CFBD62}.Debug|x64.Build.0 = Debug|Any CPU
- {D3034A38-46C3-44B5-9AD3-7AD369CFBD62}.Debug|x86.ActiveCfg = Debug|Any CPU
- {D3034A38-46C3-44B5-9AD3-7AD369CFBD62}.Debug|x86.Build.0 = Debug|Any CPU
- {D3034A38-46C3-44B5-9AD3-7AD369CFBD62}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {D3034A38-46C3-44B5-9AD3-7AD369CFBD62}.Release|Any CPU.Build.0 = Release|Any CPU
- {D3034A38-46C3-44B5-9AD3-7AD369CFBD62}.Release|x64.ActiveCfg = Release|Any CPU
- {D3034A38-46C3-44B5-9AD3-7AD369CFBD62}.Release|x64.Build.0 = Release|Any CPU
- {D3034A38-46C3-44B5-9AD3-7AD369CFBD62}.Release|x86.ActiveCfg = Release|Any CPU
- {D3034A38-46C3-44B5-9AD3-7AD369CFBD62}.Release|x86.Build.0 = Release|Any CPU
- {8EA0C726-FE60-4EE7-A549-BEC861E985FE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {8EA0C726-FE60-4EE7-A549-BEC861E985FE}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {8EA0C726-FE60-4EE7-A549-BEC861E985FE}.Debug|x64.ActiveCfg = Debug|Any CPU
- {8EA0C726-FE60-4EE7-A549-BEC861E985FE}.Debug|x64.Build.0 = Debug|Any CPU
- {8EA0C726-FE60-4EE7-A549-BEC861E985FE}.Debug|x86.ActiveCfg = Debug|Any CPU
- {8EA0C726-FE60-4EE7-A549-BEC861E985FE}.Debug|x86.Build.0 = Debug|Any CPU
- {8EA0C726-FE60-4EE7-A549-BEC861E985FE}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {8EA0C726-FE60-4EE7-A549-BEC861E985FE}.Release|Any CPU.Build.0 = Release|Any CPU
- {8EA0C726-FE60-4EE7-A549-BEC861E985FE}.Release|x64.ActiveCfg = Release|Any CPU
- {8EA0C726-FE60-4EE7-A549-BEC861E985FE}.Release|x64.Build.0 = Release|Any CPU
- {8EA0C726-FE60-4EE7-A549-BEC861E985FE}.Release|x86.ActiveCfg = Release|Any CPU
- {8EA0C726-FE60-4EE7-A549-BEC861E985FE}.Release|x86.Build.0 = Release|Any CPU
- {7A9EB8DF-4E08-4739-B894-E54D7A6F8311}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {7A9EB8DF-4E08-4739-B894-E54D7A6F8311}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {7A9EB8DF-4E08-4739-B894-E54D7A6F8311}.Debug|x64.ActiveCfg = Debug|Any CPU
- {7A9EB8DF-4E08-4739-B894-E54D7A6F8311}.Debug|x64.Build.0 = Debug|Any CPU
- {7A9EB8DF-4E08-4739-B894-E54D7A6F8311}.Debug|x86.ActiveCfg = Debug|Any CPU
- {7A9EB8DF-4E08-4739-B894-E54D7A6F8311}.Debug|x86.Build.0 = Debug|Any CPU
- {7A9EB8DF-4E08-4739-B894-E54D7A6F8311}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {7A9EB8DF-4E08-4739-B894-E54D7A6F8311}.Release|Any CPU.Build.0 = Release|Any CPU
- {7A9EB8DF-4E08-4739-B894-E54D7A6F8311}.Release|x64.ActiveCfg = Release|Any CPU
- {7A9EB8DF-4E08-4739-B894-E54D7A6F8311}.Release|x64.Build.0 = Release|Any CPU
- {7A9EB8DF-4E08-4739-B894-E54D7A6F8311}.Release|x86.ActiveCfg = Release|Any CPU
- {7A9EB8DF-4E08-4739-B894-E54D7A6F8311}.Release|x86.Build.0 = Release|Any CPU
- {CD9D5ED3-3724-4AF6-8941-3395986E8D49}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {CD9D5ED3-3724-4AF6-8941-3395986E8D49}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {CD9D5ED3-3724-4AF6-8941-3395986E8D49}.Debug|x64.ActiveCfg = Debug|Any CPU
- {CD9D5ED3-3724-4AF6-8941-3395986E8D49}.Debug|x64.Build.0 = Debug|Any CPU
- {CD9D5ED3-3724-4AF6-8941-3395986E8D49}.Debug|x86.ActiveCfg = Debug|Any CPU
- {CD9D5ED3-3724-4AF6-8941-3395986E8D49}.Debug|x86.Build.0 = Debug|Any CPU
- {CD9D5ED3-3724-4AF6-8941-3395986E8D49}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {CD9D5ED3-3724-4AF6-8941-3395986E8D49}.Release|Any CPU.Build.0 = Release|Any CPU
- {CD9D5ED3-3724-4AF6-8941-3395986E8D49}.Release|x64.ActiveCfg = Release|Any CPU
- {CD9D5ED3-3724-4AF6-8941-3395986E8D49}.Release|x64.Build.0 = Release|Any CPU
- {CD9D5ED3-3724-4AF6-8941-3395986E8D49}.Release|x86.ActiveCfg = Release|Any CPU
- {CD9D5ED3-3724-4AF6-8941-3395986E8D49}.Release|x86.Build.0 = Release|Any CPU
+ {C9D8E39F-55C3-43C2-93B6-8F00CEFAF786}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {C9D8E39F-55C3-43C2-93B6-8F00CEFAF786}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {C9D8E39F-55C3-43C2-93B6-8F00CEFAF786}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {C9D8E39F-55C3-43C2-93B6-8F00CEFAF786}.Release|Any CPU.Build.0 = Release|Any CPU
+ {3EDD8420-0387-42B9-8430-D3F4300047A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {3EDD8420-0387-42B9-8430-D3F4300047A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {3EDD8420-0387-42B9-8430-D3F4300047A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {3EDD8420-0387-42B9-8430-D3F4300047A1}.Release|Any CPU.Build.0 = Release|Any CPU
+ {EB15DC7B-F1FF-4776-AA34-3260552A5A2C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {EB15DC7B-F1FF-4776-AA34-3260552A5A2C}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {EB15DC7B-F1FF-4776-AA34-3260552A5A2C}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {EB15DC7B-F1FF-4776-AA34-3260552A5A2C}.Release|Any CPU.Build.0 = Release|Any CPU
+ {51FC081F-09F5-411C-A2A8-6BB46FCB4BBB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {51FC081F-09F5-411C-A2A8-6BB46FCB4BBB}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {51FC081F-09F5-411C-A2A8-6BB46FCB4BBB}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {51FC081F-09F5-411C-A2A8-6BB46FCB4BBB}.Release|Any CPU.Build.0 = Release|Any CPU
+ {42BE450C-B2DE-4958-9F4A-320DFECFD7AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {42BE450C-B2DE-4958-9F4A-320DFECFD7AE}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {42BE450C-B2DE-4958-9F4A-320DFECFD7AE}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {42BE450C-B2DE-4958-9F4A-320DFECFD7AE}.Release|Any CPU.Build.0 = Release|Any CPU
+ {15CFFEBB-F56F-41BB-845F-2A442E5C7523}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {15CFFEBB-F56F-41BB-845F-2A442E5C7523}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {15CFFEBB-F56F-41BB-845F-2A442E5C7523}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {15CFFEBB-F56F-41BB-845F-2A442E5C7523}.Release|Any CPU.Build.0 = Release|Any CPU
+ {0BFCE22D-2CB4-49E1-AD29-B84B382D764B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {0BFCE22D-2CB4-49E1-AD29-B84B382D764B}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {0BFCE22D-2CB4-49E1-AD29-B84B382D764B}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {0BFCE22D-2CB4-49E1-AD29-B84B382D764B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
diff --git a/src/ConnectedKubernetes/MSSharedLibKey.snk b/src/ConnectedKubernetes/MSSharedLibKey.snk
deleted file mode 100644
index 695f1b38774e..000000000000
Binary files a/src/ConnectedKubernetes/MSSharedLibKey.snk and /dev/null differ
diff --git a/src/ConnectedKubernetes/Properties/AssemblyInfo.cs b/src/ConnectedKubernetes/Properties/AssemblyInfo.cs
index ea6fbd0b6409..e0f623e8428c 100644
--- a/src/ConnectedKubernetes/Properties/AssemblyInfo.cs
+++ b/src/ConnectedKubernetes/Properties/AssemblyInfo.cs
@@ -24,5 +24,5 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("CE93AF3C-92E0-4357-93A0-22A5766CDF13")]
-[assembly: AssemblyVersion("0.7.0")]
-[assembly: AssemblyFileVersion("0.7.0")]
+[assembly: AssemblyVersion("0.8.0")]
+[assembly: AssemblyFileVersion("0.8.0")]
diff --git a/src/ConnectedKubernetes/custom/New-AzConnectedKubernetes.ps1 b/src/ConnectedKubernetes/custom/New-AzConnectedKubernetes.ps1
index 90edcc63c082..f0e5ae5741a9 100644
--- a/src/ConnectedKubernetes/custom/New-AzConnectedKubernetes.ps1
+++ b/src/ConnectedKubernetes/custom/New-AzConnectedKubernetes.ps1
@@ -54,12 +54,55 @@ function New-AzConnectedKubernetes {
# The ID of the target subscription.
${SubscriptionId},
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.Uri]
+ # The http URI of the proxy server for the kubernetes cluster to use
+ ${HttpProxy},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.Uri]
+ # The https URI of the proxy server for the kubernetes cluster to use
+ ${HttpsProxy},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.String]
+ # The comma-separated list of hostnames that should be excluded from the proxy server for the kubernetes cluster to use
+ ${NoProxy},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.String]
+ # The path to the certificate file for proxy or custom Certificate Authority.
+ ${ProxyCert},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [ValidateRange(0,3600)]
+ [Int]
+ # The time required (in seconds) for the arc-agent pods to be installed on the kubernetes cluster.
+ ${OnboardingTimeout} = 600,
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.Management.Automation.SwitchParameter]
+ # Flag to disable auto upgrade of arc agents.
+ ${DisableAutoUpgrade},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.String]
+ # Override the default container log path to enable fluent-bit logging.
+ ${ContainerLogPath},
+
[Parameter(HelpMessage="Path to the kube config file")]
[Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Body')]
[System.String]
# Path to the kube config file
${KubeConfig},
-
+
[Parameter(HelpMessage="Kubconfig context from current machine")]
[Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Body')]
[System.String]
@@ -172,14 +215,14 @@ function New-AzConnectedKubernetes {
[Parameter(DontShow)]
[Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')]
[System.Uri]
- # The URI for the proxy server to use
+ # The URI of the proxy server for host os to use
${Proxy},
[Parameter(DontShow)]
[ValidateNotNull()]
[Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')]
[System.Management.Automation.PSCredential]
- # Credentials for a proxy server to use for the remote call
+ # The credential of the proxy server for host os to use
${ProxyCredential},
[Parameter(DontShow)]
@@ -224,7 +267,7 @@ function New-AzConnectedKubernetes {
if ($PSBoundParameters.ContainsKey('KubeContext')) {
$Null = $PSBoundParameters.Remove('KubeContext')
}
- if (($KubeContext -eq $null) -or ($KubeContext -eq '')) {
+ if (($null -eq $KubeContext) -or ($KubeContext -eq '')) {
$KubeContext = kubectl config current-context
}
@@ -260,9 +303,10 @@ function New-AzConnectedKubernetes {
#EndRegion
#Region get release namespace
+ Set-Variable ReleaseInstallNamespace -option Constant -value "azure-arc-release"
$ReleaseNamespace = $null
try {
- $ReleaseNamespace = (helm status azure-arc -o json --kubeconfig $KubeConfig --kube-context $KubeContext | ConvertFrom-Json).namespace
+ $ReleaseNamespace = (helm status azure-arc -o json --kubeconfig $KubeConfig --kube-context $KubeContext -n $ReleaseInstallNamespace | ConvertFrom-Json).namespace
} catch {
Write-Error "Fail to find the namespace for azure-arc."
}
@@ -292,7 +336,12 @@ function New-AzConnectedKubernetes {
$HelmRepoUrl = Get-ChildItem -Path Env:HELMREPOURL
helm repo add $HelmRepoName $HelmRepoUrl --kubeconfig $KubeConfig --kube-context $KubeContext
}
-
+
+ $resources = Get-Module Az.Resources -ListAvailable
+ if ($null -eq $resources) {
+ Write-Error "Missing required module(s): Az.Resources. Please run 'Install-Module Az.Resources -Repository PSGallery' to install Az.Resources."
+ return
+ }
if (Test-Path Env:HELMREGISTRY) {
$RegisteryPath = Get-ChildItem -Path Env:HELMREGISTRY
} else {
@@ -301,7 +350,15 @@ function New-AzConnectedKubernetes {
$ReleaseTrain = Get-ChildItem -Path Env:RELEASETRAIN
} else {
$ReleaseTrain = 'stable'
- }
+ }
+ $AzLocation = Get-AzLocation | Where-Object { ($_.DisplayName -ieq $Location) -or ($_.Location -ieq $Location)}
+ $Region = $AzLocation.Location
+ if ($null -eq $Region) {
+ Write-Error "Invalid location: $Location"
+ return
+ } else {
+ $Location = $Region
+ }
$ChartLocationUrl = "https://${Location}.dp.kubernetesconfiguration.azure.com/azure-arc-k8sagents/GetLatestHelmPackagePath?api-version=2019-11-01-preview&releaseTrain=${ReleaseTrain}"
$Uri = [System.Uri]::New($ChartLocationUrl)
@@ -315,12 +372,12 @@ function New-AzConnectedKubernetes {
$HeaderParameter = @{
"Authorization" = "Bearer $AccessToken"
}
- $Response = Invoke-WebRequest -Uri $Uri -Headers $HeaderParameter -Method Post
+ $Response = Invoke-WebRequest -Uri $Uri -Headers $HeaderParameter -Method Post -UseBasicParsing
if ($Response.StatusCode -eq 200) {
$RegisteryPath = ($Response.Content | ConvertFrom-Json).repositoryPath
} else {
- Write-Error "Error while fetching helm chart registry path: ${$Response.RawContent}"
- throw
+ throw "Error while fetching helm chart registry path: ${$Response.RawContent}"
+
}
}
Set-Item -Path Env:HELM_EXPERIMENTAL_OCI -Value 1
@@ -328,8 +385,7 @@ function New-AzConnectedKubernetes {
try {
helm chart pull $RegisteryPath --kubeconfig $KubeConfig --kube-context $KubeContext
} catch {
- Write-Error "Unable to pull helm chart from the registery $RegisteryPath"
- throw
+ throw "Unable to pull helm chart from the registery $RegisteryPath"
}
#Endregion
@@ -349,9 +405,20 @@ function New-AzConnectedKubernetes {
#Endregion
$RSA = [System.Security.Cryptography.RSA]::Create(4096)
- $AgentPublicKey = [System.Convert]::ToBase64String($RSA.ExportRSAPublicKey())
- $AgentPrivateKey = "-----BEGIN RSA PRIVATE KEY-----`n" + [System.Convert]::ToBase64String($RSA.ExportRSAPrivateKey()) + "`n-----END RSA PRIVATE KEY-----"
-
+ if ($PSVersionTable.PSVersion.Major -eq 5) {
+ try {
+ . "$PSScriptRoot/RSAHelper.ps1"
+ $AgentPublicKey = ExportRSAPublicKeyBase64($RSA)
+ $AgentPrivateKey = ExportRSAPrivateKeyBase64($RSA)
+ $AgentPrivateKey = "-----BEGIN RSA PRIVATE KEY-----`n" + $AgentPrivateKey + "`n-----END RSA PRIVATE KEY-----"
+ } catch {
+ throw "Unable to generate RSA keys"
+ }
+ } else {
+ $AgentPublicKey = [System.Convert]::ToBase64String($RSA.ExportRSAPublicKey())
+ $AgentPrivateKey = "-----BEGIN RSA PRIVATE KEY-----`n" + [System.Convert]::ToBase64String($RSA.ExportRSAPrivateKey()) + "`n-----END RSA PRIVATE KEY-----"
+ }
+
$HelmChartPath = Join-Path -Path $ChartExportPath -ChildPath 'azure-arc-k8sagents'
if (Test-Path Env:HELMCHART) {
$ChartPath = Get-ChildItem -Path Env:HELMCHART
@@ -359,11 +426,86 @@ function New-AzConnectedKubernetes {
$ChartPath = $HelmChartPath
}
+ #Region helm options
+ $options = ""
+ $proxyEnableState = $false
+ if (-not ([string]::IsNullOrEmpty($HttpProxy))) {
+ $HttpProxyStr = $HttpProxy.ToString()
+ $HttpProxyStr = $HttpProxyStr -replace ',','\,'
+ $HttpProxyStr = $HttpProxyStr -replace '/','\/'
+ $options += " --set global.httpProxy=$HttpProxyStr"
+ $proxyEnableState = $true
+ $Null = $PSBoundParameters.Remove('HttpProxy')
+ }
+ if (-not ([string]::IsNullOrEmpty($HttpsProxy))) {
+ $HttpsProxyStr = $HttpsProxy.ToString()
+ $HttpsProxyStr = $HttpsProxyStr -replace ',','\,'
+ $HttpsProxyStr = $HttpsProxyStr -replace '/','\/'
+ $options += " --set global.httpsProxy=$HttpsProxyStr"
+ $proxyEnableState = $true
+ $Null = $PSBoundParameters.Remove('HttpsProxy')
+ }
+ if (-not ([string]::IsNullOrEmpty($NoProxy))) {
+ $NoProxy = $NoProxy -replace ',','\,'
+ $NoProxy = $NoProxy -replace '/','\/'
+ $options += " --set global.noProxy=$NoProxy"
+ $proxyEnableState = $true
+ $Null = $PSBoundParameters.Remove('NoProxy')
+ }
+ if ($proxyEnableState) {
+ $options += " --set global.isProxyEnabled=true"
+ }
+ try {
+ if ((-not ([string]::IsNullOrEmpty($ProxyCert))) -and (Test-Path $ProxyCert)) {
+ $options += " --set-file global.proxyCert=$ProxyCert"
+ $options += " --set global.isCustomCert=true"
+ }
+ } catch {
+ throw "Unable to find ProxyCert from file path"
+ }
+ if ($DisableAutoUpgrade) {
+ $options += " --set systemDefaultValues.azureArcAgents.autoUpdate=false"
+ $Null = $PSBoundParameters.Remove('DisableAutoUpgrade')
+ }
+ if (-not ([string]::IsNullOrEmpty($ContainerLogPath))) {
+ $options += " --set systemDefaultValues.fluent-bit.containerLogPath=$ContainerLogPath"
+ $Null = $PSBoundParameters.Remove('ContainerLogPath')
+ }
+ if (-not ([string]::IsNullOrEmpty($KubeConfig))) {
+ $options += " --kubeconfig $KubeConfig"
+ }
+ if (-not ([string]::IsNullOrEmpty($KubeContext))) {
+ $options += " --kube-context $KubeContext"
+ }
+ if (!$NoWait) {
+ $options += " --wait --timeout $OnboardingTimeout"
+ $options += "s"
+ }
+ #Endregion
+ if ($PSBoundParameters.ContainsKey('OnboardingTimeout')) {
+ $PSBoundParameters.Remove('OnboardingTimeout')
+ }
+ if ((-not ([string]::IsNullOrEmpty($Proxy))) -and (-not $PSBoundParameters.ContainsKey('ProxyCredential'))) {
+ if (-not ([string]::IsNullOrEmpty($Proxy.UserInfo))) {
+ try{
+ $userInfo = $Proxy.UserInfo -Split ':'
+ $pass = ConvertTo-SecureString $userInfo[1] -AsPlainText -Force
+ $ProxyCredential = New-Object System.Management.Automation.PSCredential ($userInfo[0] , $pass)
+ $PSBoundParameters.Add('ProxyCredential', $ProxyCredential)
+ } catch {
+ Write-Warning "Please set ProxyCredential or provide username and password in the Proxy parameter"
+ throw
+ }
+ } else {
+ Write-Warning "If the proxy is a private proxy, pass ProxyCredential parameter or provide username and password in the Proxy parameter"
+ }
+ }
+
$PSBoundParameters.Add('AgentPublicKeyCertificate', $AgentPublicKey)
$Response = Az.ConnectedKubernetes.internal\New-AzConnectedKubernetes @PSBoundParameters
- $TenantId = [Microsoft.Azure.Commands.Common.Authentication.Abstractions.AzureRmProfileProvider]::Instance.Profile.DefaultContext.Tenant.Id
- helm upgrade --install azure-arc $ChartPath --set global.subscriptionId=$SubscriptionId --set global.resourceGroupName=$ResourceGroupName --set global.resourceName=$ClusterName --set global.tenantId=$TenantId --set global.location=$Location --set global.onboardingPrivateKey=$AgentPrivateKey --set systemDefaultValues.spnOnboarding=false --set global.azureEnvironment=AZUREPUBLICCLOUD --set systemDefaultValues.clusterconnect-agent.enabled=true --set global.kubernetesDistro=$Distribution --set global.kubernetesInfra=$Infrastructure --kubeconfig $KubeConfig --kube-context $KubeContext --wait --timeout 600s
+ $TenantId = [Microsoft.Azure.Commands.Common.Authentication.Abstractions.AzureRmProfileProvider]::Instance.Profile.DefaultContext.Tenant.Id
+ helm upgrade --install azure-arc $ChartPath --namespace $ReleaseInstallNamespace --create-namespace --set global.subscriptionId=$SubscriptionId --set global.resourceGroupName=$ResourceGroupName --set global.resourceName=$ClusterName --set global.tenantId=$TenantId --set global.location=$Location --set global.onboardingPrivateKey=$AgentPrivateKey --set systemDefaultValues.spnOnboarding=false --set global.azureEnvironment=AZUREPUBLICCLOUD --set systemDefaultValues.clusterconnect-agent.enabled=true --set global.kubernetesDistro=$Distribution --set global.kubernetesInfra=$Infrastructure (-split $options)
Return $Response
}
}
diff --git a/src/ConnectedKubernetes/custom/README.md b/src/ConnectedKubernetes/custom/README.md
index ebb3fefb9bbc..78e76af5d1da 100644
--- a/src/ConnectedKubernetes/custom/README.md
+++ b/src/ConnectedKubernetes/custom/README.md
@@ -32,7 +32,7 @@ These provide functionality to our HTTP pipeline and other useful features. In s
### Attributes
For processing the cmdlets, we've created some additional attributes:
- `Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DescriptionAttribute`
- - Used in C# cmdlets to provide a high-level description of the cmdlet. This is propagated to reference documentation via [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts.
+ - Used in C# cmdlets to provide a high-level description of the cmdlet. This is propagated to reference documentation via [help comments](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts.
- `Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute`
- Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.ConnectedKubernetes`.
- `Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.InternalExportAttribute`
diff --git a/src/ConnectedKubernetes/custom/RSAHelper.ps1 b/src/ConnectedKubernetes/custom/RSAHelper.ps1
new file mode 100644
index 000000000000..c12ecc638b55
--- /dev/null
+++ b/src/ConnectedKubernetes/custom/RSAHelper.ps1
@@ -0,0 +1,134 @@
+function ExportRSAPrivateKeyBase64{
+[Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()]
+ param(
+ [Parameter(Mandatory)]
+ [System.Security.Cryptography.RSA]
+ $RSA
+ )
+ process{
+ $RSAParams = $RSA.ExportParameters(1)
+ [byte]$Sequence = 0x30
+ [byte[]]$Version = (0x00)
+ $stream = [System.IO.MemoryStream]::new()
+ $writer = [System.IO.BinaryWriter]::new($stream)
+ $writer.Write($Sequence); # SEQUENCE
+ $innerStream = [System.IO.MemoryStream]::new()
+ $innerWriter = [System.IO.BinaryWriter]::new($innerStream)
+
+ EncodeIntegerBigEndian $innerWriter $Version
+ EncodeIntegerBigEndian $innerWriter $RSAParams.Modulus
+ EncodeIntegerBigEndian $innerWriter $RSAParams.Exponent
+ EncodeIntegerBigEndian $innerWriter $RSAParams.D
+ EncodeIntegerBigEndian $innerWriter $RSAParams.P
+ EncodeIntegerBigEndian $innerWriter $RSAParams.Q
+ EncodeIntegerBigEndian $innerWriter $RSAParams.DP
+ EncodeIntegerBigEndian $innerWriter $RSAParams.DQ
+ EncodeIntegerBigEndian $innerWriter $RSAParams.InverseQ
+
+ $length = ([int]($innerStream.Length))
+ EncodeLength $writer $length
+ $writer.Write($innerStream.GetBuffer(), 0, $length)
+
+ $base64 = [Convert]::ToBase64String($stream.GetBuffer(), 0, ([int]($stream.Length)))
+
+ return $base64
+ }
+}
+
+function ExportRSAPublicKeyBase64{
+[Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()]
+ param(
+ [Parameter(Mandatory)]
+ [System.Security.Cryptography.RSA]
+ $RSA
+ )
+ process{
+ $RSAParams = $RSA.ExportParameters(0)
+ [byte]$Sequence = 0x30
+ $stream = [System.IO.MemoryStream]::new()
+ $writer = [System.IO.BinaryWriter]::new($stream)
+ $writer.Write($Sequence);
+ $innerStream = [System.IO.MemoryStream]::new()
+ $innerWriter = [System.IO.BinaryWriter]::new($innerStream)
+ EncodeIntegerBigEndian $innerWriter $RSAParams.Modulus
+ EncodeIntegerBigEndian $innerWriter $RSAParams.Exponent
+
+ $length = ([int]($innerStream.Length))
+ EncodeLength $writer $length
+ $writer.Write($innerStream.GetBuffer(), 0, $length)
+
+ $base64 = [Convert]::ToBase64String($stream.GetBuffer(), 0, ([int]($stream.Length)))
+
+ return $base64
+ }
+}
+
+function EncodeLength{
+[Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()]
+ param(
+ [System.IO.BinaryWriter]$stream,
+ [int]$length
+ )
+ process{
+ [byte]$bytex80 = 0x80
+ if($length -lt 0){
+ throw "Length must be non-negative"
+ }
+ if($length -lt $bytex80){
+ $stream.Write(([byte]$length))
+ }
+ else{
+ $temp = $length
+ $bytesRequired = 0;
+ while ($temp -gt 0) {
+ $temp = $temp -shr 8
+ $bytesRequired++
+ }
+
+ [byte]$byteToWrite = $bytesRequired -bor $bytex80
+ $stream.Write($byteToWrite)
+ $iValue = ($bytesRequired - 1)
+ [byte]$0ffByte = 0xff
+ for ($i = $iValue; $i -ge 0; $i--) {
+ [byte]$byteToWrite = ($length -shr (8 * $i) -band $0ffByte)
+ $stream.Write($byteToWrite )
+ }
+ }
+ }
+}
+
+function EncodeIntegerBigEndian{
+[Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()]
+ param(
+ [System.IO.BinaryWriter]$stream,
+ [byte[]]$value,
+ [bool]$forceUnsigned = $true
+ )
+ process{
+ [byte]$Integer = 0x02
+
+ $stream.Write($Integer); # INTEGER
+ $prefixZeros = 0
+ for ($i = 0; $i -lt $value.Length; $i++) {
+ if ($value[$i] -ne 0){break}
+ $prefixZeros++
+ }
+ if(($value.Length - $prefixZeros) -eq 0){
+ EncodeLength $stream 1
+ $stream.Write(([byte]0))
+ }
+ else{
+ [byte]$newByte = 0x7f
+ if(($forceUnsigned) -AND ($value[$prefixZeros] -gt $newByte)){
+ EncodeLength $stream ($value.Length - $prefixZeros +1)
+ $stream.Write(([byte]0))
+ }
+ else{
+ EncodeLength $stream ($value.Length - $prefixZeros)
+ }
+ for ($i = $prefixZeros; $i -lt $value.Length; $i++) {
+ $stream.Write($value[$i])
+ }
+ }
+ }
+}
diff --git a/src/ConnectedKubernetes/custom/Remove-AzConnectedKubernetes.ps1 b/src/ConnectedKubernetes/custom/Remove-AzConnectedKubernetes.ps1
index b9616a9cd8dc..1ee62412b9f0 100644
--- a/src/ConnectedKubernetes/custom/Remove-AzConnectedKubernetes.ps1
+++ b/src/ConnectedKubernetes/custom/Remove-AzConnectedKubernetes.ps1
@@ -186,9 +186,10 @@ param(
#Endregion
#Region get release namespace
+ Set-Variable ReleaseInstallNamespace -option Constant -value "azure-arc-release"
$ReleaseNamespace = $null
try {
- $ReleaseNamespace = (helm status azure-arc -o json --kubeconfig $KubeConfig --kube-context $KubeContext | ConvertFrom-Json).namespace
+ $ReleaseNamespace = (helm status azure-arc -o json --kubeconfig $KubeConfig --kube-context $KubeContext -n $ReleaseInstallNamespace | ConvertFrom-Json).namespace
} catch {
Write-Error "Fail to find the namespace for azure-arc."
}
@@ -211,7 +212,7 @@ param(
}
if (($ResourceGroupName -eq $ConfigmapRgName) -and ($ClusterName -eq $ConfigmapClusterName)) {
Az.ConnectedKubernetes.internal\Remove-AzConnectedKubernetes @PSBoundParameters
- helm delete azure-arc --namespace $ReleaseNamespace --kubeconfig $KubeConfig --kube-context $KubeContext
+ helm delete azure-arc --namespace $ReleaseInstallNamespace --kubeconfig $KubeConfig --kube-context $KubeContext
} else {
Write-Error "The current context in the kubeconfig file does not correspond to the connected cluster resource specified. Agents installed on this cluster correspond to the resource group name '$ConfigmapRgName' and resource name '$ConfigmapClusterName'."
}
diff --git a/src/ConnectedKubernetes/examples/New-AzConnectedKubernetes.md b/src/ConnectedKubernetes/examples/New-AzConnectedKubernetes.md
index ee2c13280548..b6de62dd9825 100644
--- a/src/ConnectedKubernetes/examples/New-AzConnectedKubernetes.md
+++ b/src/ConnectedKubernetes/examples/New-AzConnectedKubernetes.md
@@ -51,4 +51,58 @@ Location Name ResourceGroupName
eastus azps_test_cluster_ahb azps_test_group
```
-Using [-AcceptEULA] will default to your acceptance of the terms of our legal agreement and create a connected kubernetes.
\ No newline at end of file
+Using [-AcceptEULA] will default to your acceptance of the terms of our legal agreement and create a connected kubernetes.
+
+### Example 5: Create a connected kubernetes with parameters HttpProxy, HttpsProxy, NoProxy and Proxy.
+```powershell
+New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -HttpProxy "http://proxy-user:proxy-password@proxy-ip:port" -HttpsProxy "http://proxy-user:proxy-password@proxy-ip:port" -NoProxy "localhost,127.0.0.0/8,192.168.0.0/16,172.17.0.0/16,10.96.0.0/12,10.244.0.0/16,10.43.0.0/24,.svc" -Proxy "http://proxy-user:proxy-password@proxy-ip:port"
+```
+
+```output
+Location Name ResourceGroupName
+-------- ---- -----------------
+eastus azps_test_cluster_ahb azps_test_group
+```
+
+This command creates a connected kubernetes with parameters HttpProxy, HttpsProxy, NoProxy and Proxy.
+
+### Example 6: Create a connected kubernetes with parameters HttpProxy, HttpsProxy, NoProxy, Proxy and ProxyCredential.
+```powershell
+$pwd = ConvertTo-SecureString "proxy-password" -AsPlainText -Force
+$cred = New-Object System.Management.Automation.PSCredential ("proxy-user", $pwd)
+New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -HttpProxy "http://proxy-user:proxy-password@proxy-ip:port" -HttpsProxy "http://proxy-user:proxy-password@proxy-ip:port" -NoProxy "localhost,127.0.0.0/8,192.168.0.0/16,172.17.0.0/16,10.96.0.0/12,10.244.0.0/16,10.43.0.0/24,.svc" -Proxy "http://proxy-ip:port" -ProxyCredential $cred
+```
+
+```output
+Location Name ResourceGroupName
+-------- ---- -----------------
+eastus azps_test_cluster_ahb azps_test_group
+```
+
+This command creates a connected kubernetes with parameters HttpProxy, HttpsProxy, NoProxy, Proxy and ProxyCredential.
+
+### Example 7: Create a connected kubernetes and disable auto upgrade of arc agents.
+```powershell
+New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -DisableAutoUpgrade
+```
+
+```output
+Location Name ResourceGroupName
+-------- ---- -----------------
+eastus azps_test_cluster azps_test_group
+```
+
+This command creates a connected kubernetes and disable auto upgrade of arc agents.
+
+### Example 8: Create a connected kubernetes with custom onboarding timeout.
+```powershell
+New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -OnboardingTimeout 600
+```
+
+```output
+Location Name ResourceGroupName
+-------- ---- -----------------
+eastus azps_test_cluster azps_test_group
+```
+
+This command creates a connected kubernetes with custom onboarding timeout.
diff --git a/src/ConnectedKubernetes/exports/New-AzConnectedKubernetes.ps1 b/src/ConnectedKubernetes/exports/New-AzConnectedKubernetes.ps1
index d2c45105a561..358b73d93cd3 100644
--- a/src/ConnectedKubernetes/exports/New-AzConnectedKubernetes.ps1
+++ b/src/ConnectedKubernetes/exports/New-AzConnectedKubernetes.ps1
@@ -27,6 +27,16 @@ New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps
New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -PrivateLinkState 'Enabled' -Distribution "AKS_Management" -DistributionVersion "1.0" -PrivateLinkScopeResourceId "/subscriptions/{subscriptionId}/resourceGroups/azps_test_group/providers/Microsoft.HybridCompute/privateLinkScopes/azps-privatelinkscope" -infrastructure "azure_stack_hci" -ProvisioningState 'Succeeded' -AzureHybridBenefit 'True'
.Example
New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -PrivateLinkState 'Enabled' -Distribution "AKS_Management" -DistributionVersion "1.0" -PrivateLinkScopeResourceId "/subscriptions/{subscriptionId}/resourceGroups/azps_test_group/providers/Microsoft.HybridCompute/privateLinkScopes/azps-privatelinkscope" -infrastructure "azure_stack_hci" -ProvisioningState 'Succeeded' -AzureHybridBenefit 'True' -AcceptEULA
+.Example
+New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -HttpProxy "http://proxy-user:proxy-password@proxy-ip:port" -HttpsProxy "http://proxy-user:proxy-password@proxy-ip:port" -NoProxy "localhost,127.0.0.0/8,192.168.0.0/16,172.17.0.0/16,10.96.0.0/12,10.244.0.0/16,10.43.0.0/24,.svc" -Proxy "http://proxy-user:proxy-password@proxy-ip:port"
+.Example
+$pwd = ConvertTo-SecureString "proxy-password" -AsPlainText -Force
+$cred = New-Object System.Management.Automation.PSCredential ("proxy-user", $pwd)
+New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -HttpProxy "http://proxy-user:proxy-password@proxy-ip:port" -HttpsProxy "http://proxy-user:proxy-password@proxy-ip:port" -NoProxy "localhost,127.0.0.0/8,192.168.0.0/16,172.17.0.0/16,10.96.0.0/12,10.244.0.0/16,10.43.0.0/24,.svc" -Proxy "http://proxy-ip:port" -ProxyCredential $cred
+.Example
+New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -DisableAutoUpgrade
+.Example
+New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -OnboardingTimeout 600
.Outputs
Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.Api20221001Preview.IConnectedCluster
@@ -58,6 +68,48 @@ param(
# The ID of the target subscription.
${SubscriptionId},
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.Uri]
+ # The http URI of the proxy server for the kubernetes cluster to use
+ ${HttpProxy},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.Uri]
+ # The https URI of the proxy server for the kubernetes cluster to use
+ ${HttpsProxy},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.String]
+ # The comma-separated list of hostnames that should be excluded from the proxy server for the kubernetes cluster to use
+ ${NoProxy},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.String]
+ # The path to the certificate file for proxy or custom Certificate Authority.
+ ${ProxyCert},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.Int32]
+ # The time required (in seconds) for the arc-agent pods to be installed on the kubernetes cluster.
+ ${OnboardingTimeout},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.Management.Automation.SwitchParameter]
+ # Flag to disable auto upgrade of arc agents.
+ ${DisableAutoUpgrade},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.String]
+ # Override the default container log path to enable fluent-bit logging.
+ ${ContainerLogPath},
+
[Parameter(Mandatory)]
[Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Body')]
[System.String]
@@ -177,14 +229,14 @@ param(
[Parameter(DontShow)]
[Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')]
[System.Uri]
- # The URI for the proxy server to use
+ # The URI of the proxy server for host os to use
${Proxy},
[Parameter(DontShow)]
[ValidateNotNull()]
[Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')]
[System.Management.Automation.PSCredential]
- # Credentials for a proxy server to use for the remote call
+ # The credential of the proxy server for host os to use
${ProxyCredential},
[Parameter(DontShow)]
diff --git a/src/ConnectedKubernetes/exports/ProxyCmdletDefinitions.ps1 b/src/ConnectedKubernetes/exports/ProxyCmdletDefinitions.ps1
index c3949005cf92..90ed54d0fa3b 100644
--- a/src/ConnectedKubernetes/exports/ProxyCmdletDefinitions.ps1
+++ b/src/ConnectedKubernetes/exports/ProxyCmdletDefinitions.ps1
@@ -418,6 +418,16 @@ New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps
New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -PrivateLinkState 'Enabled' -Distribution "AKS_Management" -DistributionVersion "1.0" -PrivateLinkScopeResourceId "/subscriptions/{subscriptionId}/resourceGroups/azps_test_group/providers/Microsoft.HybridCompute/privateLinkScopes/azps-privatelinkscope" -infrastructure "azure_stack_hci" -ProvisioningState 'Succeeded' -AzureHybridBenefit 'True'
.Example
New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -PrivateLinkState 'Enabled' -Distribution "AKS_Management" -DistributionVersion "1.0" -PrivateLinkScopeResourceId "/subscriptions/{subscriptionId}/resourceGroups/azps_test_group/providers/Microsoft.HybridCompute/privateLinkScopes/azps-privatelinkscope" -infrastructure "azure_stack_hci" -ProvisioningState 'Succeeded' -AzureHybridBenefit 'True' -AcceptEULA
+.Example
+New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -HttpProxy "http://proxy-user:proxy-password@proxy-ip:port" -HttpsProxy "http://proxy-user:proxy-password@proxy-ip:port" -NoProxy "localhost,127.0.0.0/8,192.168.0.0/16,172.17.0.0/16,10.96.0.0/12,10.244.0.0/16,10.43.0.0/24,.svc" -Proxy "http://proxy-user:proxy-password@proxy-ip:port"
+.Example
+$pwd = ConvertTo-SecureString "proxy-password" -AsPlainText -Force
+$cred = New-Object System.Management.Automation.PSCredential ("proxy-user", $pwd)
+New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -HttpProxy "http://proxy-user:proxy-password@proxy-ip:port" -HttpsProxy "http://proxy-user:proxy-password@proxy-ip:port" -NoProxy "localhost,127.0.0.0/8,192.168.0.0/16,172.17.0.0/16,10.96.0.0/12,10.244.0.0/16,10.43.0.0/24,.svc" -Proxy "http://proxy-ip:port" -ProxyCredential $cred
+.Example
+New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -DisableAutoUpgrade
+.Example
+New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -OnboardingTimeout 600
.Outputs
Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.Api20221001Preview.IConnectedCluster
@@ -449,6 +459,48 @@ param(
# The ID of the target subscription.
${SubscriptionId},
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.Uri]
+ # The http URI of the proxy server for the kubernetes cluster to use
+ ${HttpProxy},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.Uri]
+ # The https URI of the proxy server for the kubernetes cluster to use
+ ${HttpsProxy},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.String]
+ # The comma-separated list of hostnames that should be excluded from the proxy server for the kubernetes cluster to use
+ ${NoProxy},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.String]
+ # The path to the certificate file for proxy or custom Certificate Authority.
+ ${ProxyCert},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.Int32]
+ # The time required (in seconds) for the arc-agent pods to be installed on the kubernetes cluster.
+ ${OnboardingTimeout},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.Management.Automation.SwitchParameter]
+ # Flag to disable auto upgrade of arc agents.
+ ${DisableAutoUpgrade},
+
+ [Parameter()]
+ [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')]
+ [System.String]
+ # Override the default container log path to enable fluent-bit logging.
+ ${ContainerLogPath},
+
[Parameter(Mandatory)]
[Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Body')]
[System.String]
@@ -568,14 +620,14 @@ param(
[Parameter(DontShow)]
[Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')]
[System.Uri]
- # The URI for the proxy server to use
+ # The URI of the proxy server for host os to use
${Proxy},
[Parameter(DontShow)]
[ValidateNotNull()]
[Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')]
[System.Management.Automation.PSCredential]
- # Credentials for a proxy server to use for the remote call
+ # The credential of the proxy server for host os to use
${ProxyCredential},
[Parameter(DontShow)]
diff --git a/src/ConnectedKubernetes/exports/README.md b/src/ConnectedKubernetes/exports/README.md
index db1e09eb1ab8..c6b2610251bd 100644
--- a/src/ConnectedKubernetes/exports/README.md
+++ b/src/ConnectedKubernetes/exports/README.md
@@ -1,5 +1,5 @@
# Exports
-This directory contains the cmdlets *exported by* `Az.ConnectedKubernetes`. No other cmdlets in this repository are directly exported. What that means is the `Az.ConnectedKubernetes` module will run [Export-ModuleMember](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation.
+This directory contains the cmdlets *exported by* `Az.ConnectedKubernetes`. No other cmdlets in this repository are directly exported. What that means is the `Az.ConnectedKubernetes` module will run [Export-ModuleMember](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation.
## Info
- Modifiable: no
diff --git a/src/ConnectedKubernetes/generate-info.json b/src/ConnectedKubernetes/generate-info.json
index 495562e70aae..ae2df273c1e9 100644
--- a/src/ConnectedKubernetes/generate-info.json
+++ b/src/ConnectedKubernetes/generate-info.json
@@ -1,8 +1,8 @@
{
- "swagger_commit": "3ce1e043e2d0e57016437a3870f40e33da8a6397",
+ "swagger_commit": "b6cdb7f08d2a553d7a16996010511ec278ffbe4d",
"node": "v14.15.5",
"autorest": "`-- (empty)",
- "autorest_core": "3.9.3",
+ "autorest_core": "3.9.4",
"autorest_modelerfour": "4.15.414",
"autorest_powershell": "3.0.498"
}
diff --git a/src/ConnectedKubernetes/help/New-AzConnectedKubernetes.md b/src/ConnectedKubernetes/help/New-AzConnectedKubernetes.md
index 71330a3d191e..0c2bf28dca13 100644
--- a/src/ConnectedKubernetes/help/New-AzConnectedKubernetes.md
+++ b/src/ConnectedKubernetes/help/New-AzConnectedKubernetes.md
@@ -14,8 +14,10 @@ API to register a new Kubernetes cluster and create a tracked resource in Azure
```
New-AzConnectedKubernetes -ClusterName -ResourceGroupName -Location
- [-SubscriptionId ] [-AcceptEULA] [-AzureHybridBenefit ] [-Distribution ]
- [-DistributionVersion ] [-Infrastructure ] [-KubeConfig ] [-KubeContext ]
+ [-ContainerLogPath ] [-DisableAutoUpgrade] [-HttpProxy ] [-HttpsProxy ] [-NoProxy ]
+ [-OnboardingTimeout ] [-ProxyCert ] [-SubscriptionId ] [-AcceptEULA]
+ [-AzureHybridBenefit ] [-Distribution ] [-DistributionVersion ]
+ [-Infrastructure ] [-KubeConfig ] [-KubeContext ]
[-PrivateLinkScopeResourceId ] [-PrivateLinkState ]
[-ProvisioningState ] [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait]
[-Confirm] [-WhatIf] []
@@ -81,6 +83,60 @@ eastus azps_test_cluster_ahb azps_test_group
Using [-AcceptEULA] will default to your acceptance of the terms of our legal agreement and create a connected kubernetes.
+### Example 5: Create a connected kubernetes with parameters HttpProxy, HttpsProxy, NoProxy and Proxy.
+```powershell
+New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -HttpProxy "http://proxy-user:proxy-password@proxy-ip:port" -HttpsProxy "http://proxy-user:proxy-password@proxy-ip:port" -NoProxy "localhost,127.0.0.0/8,192.168.0.0/16,172.17.0.0/16,10.96.0.0/12,10.244.0.0/16,10.43.0.0/24,.svc" -Proxy "http://proxy-user:proxy-password@proxy-ip:port"
+```
+
+```output
+Location Name ResourceGroupName
+-------- ---- -----------------
+eastus azps_test_cluster_ahb azps_test_group
+```
+
+This command creates a connected kubernetes with parameters HttpProxy, HttpsProxy, NoProxy and Proxy.
+
+### Example 6: Create a connected kubernetes with parameters HttpProxy, HttpsProxy, NoProxy, Proxy and ProxyCredential.
+```powershell
+$pwd = ConvertTo-SecureString "proxy-password" -AsPlainText -Force
+$cred = New-Object System.Management.Automation.PSCredential ("proxy-user", $pwd)
+New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -HttpProxy "http://proxy-user:proxy-password@proxy-ip:port" -HttpsProxy "http://proxy-user:proxy-password@proxy-ip:port" -NoProxy "localhost,127.0.0.0/8,192.168.0.0/16,172.17.0.0/16,10.96.0.0/12,10.244.0.0/16,10.43.0.0/24,.svc" -Proxy "http://proxy-ip:port" -ProxyCredential $cred
+```
+
+```output
+Location Name ResourceGroupName
+-------- ---- -----------------
+eastus azps_test_cluster_ahb azps_test_group
+```
+
+This command creates a connected kubernetes with parameters HttpProxy, HttpsProxy, NoProxy, Proxy and ProxyCredential.
+
+### Example 7: Create a connected kubernetes and disable auto upgrade of arc agents.
+```powershell
+New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -DisableAutoUpgrade
+```
+
+```output
+Location Name ResourceGroupName
+-------- ---- -----------------
+eastus azps_test_cluster azps_test_group
+```
+
+This command creates a connected kubernetes and disable auto upgrade of arc agents.
+
+### Example 8: Create a connected kubernetes with custom onboarding timeout.
+```powershell
+New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -OnboardingTimeout 600
+```
+
+```output
+Location Name ResourceGroupName
+-------- ---- -----------------
+eastus azps_test_cluster azps_test_group
+```
+
+This command creates a connected kubernetes with custom onboarding timeout.
+
## PARAMETERS
### -AcceptEULA
@@ -143,6 +199,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -ContainerLogPath
+Override the default container log path to enable fluent-bit logging.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -DefaultProfile
The credentials, account, tenant, and subscription used for communication with Azure.
@@ -158,6 +229,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -DisableAutoUpgrade
+Flag to disable auto upgrade of arc agents.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -Distribution
The Kubernetes distribution running on this connected cluster.
@@ -188,6 +274,36 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -HttpProxy
+The http URI of the proxy server for the kubernetes cluster to use
+
+```yaml
+Type: System.Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -HttpsProxy
+The https URI of the proxy server for the kubernetes cluster to use
+
+```yaml
+Type: System.Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -Infrastructure
The infrastructure on which the Kubernetes cluster represented by this connected cluster is running on.
@@ -248,6 +364,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -NoProxy
+The comma-separated list of hostnames that should be excluded from the proxy server for the kubernetes cluster to use
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -NoWait
Run the command asynchronously
@@ -263,6 +394,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -OnboardingTimeout
+The time required (in seconds) for the arc-agent pods to be installed on the kubernetes cluster.
+
+```yaml
+Type: System.Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -PrivateLinkScopeResourceId
The resource id of the private link scope this connected cluster is assigned to, if any.
@@ -308,6 +454,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -ProxyCert
+The path to the certificate file for proxy or custom Certificate Authority.
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -ResourceGroupName
The name of the resource group.
The name is case insensitive.
diff --git a/src/ConnectedKubernetes/how-to.md b/src/ConnectedKubernetes/how-to.md
index eb34578097b6..7bd16a08db0c 100644
--- a/src/ConnectedKubernetes/how-to.md
+++ b/src/ConnectedKubernetes/how-to.md
@@ -14,7 +14,7 @@ To generate documentation, the process is now integrated into the `build-module.
To test the cmdlets, we use [Pester](https://github.com/pester/Pester). Tests scripts (`.ps1`) should be added to the `test` folder. To execute the Pester tests, run the `test-module.ps1` script. This will run all tests in `playback` mode within the `test` folder. To read more about testing cmdlets, look at the [README.md](examples/README.md) in the `examples` folder.
## Packing `Az.ConnectedKubernetes`
-To pack `Az.ConnectedKubernetes` for distribution, run the `pack-module.ps1` script. This will take the contents of multiple directories and certain root-folder files to create a `.nupkg`. The structure of the `.nupkg` is created so it can be loaded part of a [PSRepository](https://learn.microsoft.com/powershell/module/powershellget/register-psrepository). Additionally, this package is in a format for distribution to the [PSGallery](https://www.powershellgallery.com/). For signing an Azure module, please contact the [Azure PowerShell](https://github.com/Azure/azure-powershell) team.
+To pack `Az.ConnectedKubernetes` for distribution, run the `pack-module.ps1` script. This will take the contents of multiple directories and certain root-folder files to create a `.nupkg`. The structure of the `.nupkg` is created so it can be loaded part of a [PSRepository](https://docs.microsoft.com/powershell/module/powershellget/register-psrepository). Additionally, this package is in a format for distribution to the [PSGallery](https://www.powershellgallery.com/). For signing an Azure module, please contact the [Azure PowerShell](https://github.com/Azure/azure-powershell) team.
## Module Script Details
There are multiple scripts created for performing different actions for developing `Az.ConnectedKubernetes`.
diff --git a/src/ConnectedKubernetes/internal/New-AzConnectedKubernetes.ps1 b/src/ConnectedKubernetes/internal/New-AzConnectedKubernetes.ps1
index db9e44e07293..740183d1c914 100644
--- a/src/ConnectedKubernetes/internal/New-AzConnectedKubernetes.ps1
+++ b/src/ConnectedKubernetes/internal/New-AzConnectedKubernetes.ps1
@@ -27,6 +27,16 @@ New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps
New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -PrivateLinkState 'Enabled' -Distribution "AKS_Management" -DistributionVersion "1.0" -PrivateLinkScopeResourceId "/subscriptions/{subscriptionId}/resourceGroups/azps_test_group/providers/Microsoft.HybridCompute/privateLinkScopes/azps-privatelinkscope" -infrastructure "azure_stack_hci" -ProvisioningState 'Succeeded' -AzureHybridBenefit 'True'
.Example
New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -PrivateLinkState 'Enabled' -Distribution "AKS_Management" -DistributionVersion "1.0" -PrivateLinkScopeResourceId "/subscriptions/{subscriptionId}/resourceGroups/azps_test_group/providers/Microsoft.HybridCompute/privateLinkScopes/azps-privatelinkscope" -infrastructure "azure_stack_hci" -ProvisioningState 'Succeeded' -AzureHybridBenefit 'True' -AcceptEULA
+.Example
+New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -HttpProxy "http://proxy-user:proxy-password@proxy-ip:port" -HttpsProxy "http://proxy-user:proxy-password@proxy-ip:port" -NoProxy "localhost,127.0.0.0/8,192.168.0.0/16,172.17.0.0/16,10.96.0.0/12,10.244.0.0/16,10.43.0.0/24,.svc" -Proxy "http://proxy-user:proxy-password@proxy-ip:port"
+.Example
+$pwd = ConvertTo-SecureString "proxy-password" -AsPlainText -Force
+$cred = New-Object System.Management.Automation.PSCredential ("proxy-user", $pwd)
+New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -HttpProxy "http://proxy-user:proxy-password@proxy-ip:port" -HttpsProxy "http://proxy-user:proxy-password@proxy-ip:port" -NoProxy "localhost,127.0.0.0/8,192.168.0.0/16,172.17.0.0/16,10.96.0.0/12,10.244.0.0/16,10.43.0.0/24,.svc" -Proxy "http://proxy-ip:port" -ProxyCredential $cred
+.Example
+New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -DisableAutoUpgrade
+.Example
+New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -OnboardingTimeout 600
.Outputs
Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.Api20221001Preview.IConnectedCluster
diff --git a/src/ConnectedKubernetes/internal/ProxyCmdletDefinitions.ps1 b/src/ConnectedKubernetes/internal/ProxyCmdletDefinitions.ps1
index 94883d6a1adb..50236cf8551b 100644
--- a/src/ConnectedKubernetes/internal/ProxyCmdletDefinitions.ps1
+++ b/src/ConnectedKubernetes/internal/ProxyCmdletDefinitions.ps1
@@ -136,6 +136,16 @@ New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps
New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -PrivateLinkState 'Enabled' -Distribution "AKS_Management" -DistributionVersion "1.0" -PrivateLinkScopeResourceId "/subscriptions/{subscriptionId}/resourceGroups/azps_test_group/providers/Microsoft.HybridCompute/privateLinkScopes/azps-privatelinkscope" -infrastructure "azure_stack_hci" -ProvisioningState 'Succeeded' -AzureHybridBenefit 'True'
.Example
New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -PrivateLinkState 'Enabled' -Distribution "AKS_Management" -DistributionVersion "1.0" -PrivateLinkScopeResourceId "/subscriptions/{subscriptionId}/resourceGroups/azps_test_group/providers/Microsoft.HybridCompute/privateLinkScopes/azps-privatelinkscope" -infrastructure "azure_stack_hci" -ProvisioningState 'Succeeded' -AzureHybridBenefit 'True' -AcceptEULA
+.Example
+New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -HttpProxy "http://proxy-user:proxy-password@proxy-ip:port" -HttpsProxy "http://proxy-user:proxy-password@proxy-ip:port" -NoProxy "localhost,127.0.0.0/8,192.168.0.0/16,172.17.0.0/16,10.96.0.0/12,10.244.0.0/16,10.43.0.0/24,.svc" -Proxy "http://proxy-user:proxy-password@proxy-ip:port"
+.Example
+$pwd = ConvertTo-SecureString "proxy-password" -AsPlainText -Force
+$cred = New-Object System.Management.Automation.PSCredential ("proxy-user", $pwd)
+New-AzConnectedKubernetes -ClusterName azps_test_cluster_ahb -ResourceGroupName azps_test_group -Location eastus -KubeConfig $HOME\.kube\config -KubeContext azps_aks_t01 -HttpProxy "http://proxy-user:proxy-password@proxy-ip:port" -HttpsProxy "http://proxy-user:proxy-password@proxy-ip:port" -NoProxy "localhost,127.0.0.0/8,192.168.0.0/16,172.17.0.0/16,10.96.0.0/12,10.244.0.0/16,10.43.0.0/24,.svc" -Proxy "http://proxy-ip:port" -ProxyCredential $cred
+.Example
+New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -DisableAutoUpgrade
+.Example
+New-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -OnboardingTimeout 600
.Outputs
Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.Api20221001Preview.IConnectedCluster
diff --git a/src/ConnectedKubernetes/internal/README.md b/src/ConnectedKubernetes/internal/README.md
index 9dd3e314b708..ac51bce894b0 100644
--- a/src/ConnectedKubernetes/internal/README.md
+++ b/src/ConnectedKubernetes/internal/README.md
@@ -8,7 +8,7 @@ This directory contains a module to handle *internal only* cmdlets. Cmdlets that
- Packaged: yes
## Details
-The `Az.ConnectedKubernetes.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.ConnectedKubernetes`. Instead, this sub-module is imported by the `..\custom\Az.ConnectedKubernetes.custom.psm1` module, allowing you to use hidden cmdlets in your custom, exposed cmdlets. To call these cmdlets in your custom scripts, simply use [module-qualified calls](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_command_precedence?view=powershell-6#qualified-names). For example, `Az.ConnectedKubernetes.internal\Get-Example` would call an internal cmdlet named `Get-Example`.
+The `Az.ConnectedKubernetes.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.ConnectedKubernetes`. Instead, this sub-module is imported by the `..\custom\Az.ConnectedKubernetes.custom.psm1` module, allowing you to use hidden cmdlets in your custom, exposed cmdlets. To call these cmdlets in your custom scripts, simply use [module-qualified calls](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_command_precedence?view=powershell-6#qualified-names). For example, `Az.ConnectedKubernetes.internal\Get-Example` would call an internal cmdlet named `Get-Example`.
## Purpose
This allows you to include REST specifications for services that you *do not wish to expose from your module*, but simply want to call within custom cmdlets. For example, if you want to make a custom cmdlet that uses `Storage` services, you could include a simplified `Storage` REST specification that has only the operations you need. When you run the generator and build this module, note the generated `Storage` cmdlets. Then, in your readme configuration, use [cmdlet hiding](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md#cmdlet-hiding-exportation-suppression) on the `Storage` cmdlets and they will *only be exposed to the custom cmdlets* you want to write, and not be exported as part of `Az.ConnectedKubernetes`.
diff --git a/src/ConnectedKubernetes/test/AzConnectedKubernetes.Tests.ps1 b/src/ConnectedKubernetes/test/AzConnectedKubernetes.Tests.ps1
index fdfb3a487168..40893d06e0f5 100644
--- a/src/ConnectedKubernetes/test/AzConnectedKubernetes.Tests.ps1
+++ b/src/ConnectedKubernetes/test/AzConnectedKubernetes.Tests.ps1
@@ -18,7 +18,7 @@ Describe 'AzConnectedKubernetes' {
$config.ProvisioningState | Should -Be 'Succeeded'
# Clear helm azure-arc environment
- helm delete azure-arc --no-hooks
+ helm delete azure-arc -n azure-arc-release --no-hooks
} | Should -Not -Throw
}
diff --git a/src/CosmosDB/CosmosDB/help/Get-AzCosmosDBAccount.md b/src/CosmosDB/CosmosDB/help/Get-AzCosmosDBAccount.md
index fa12f26498ce..0b79bdc15ca9 100644
--- a/src/CosmosDB/CosmosDB/help/Get-AzCosmosDBAccount.md
+++ b/src/CosmosDB/CosmosDB/help/Get-AzCosmosDBAccount.md
@@ -127,7 +127,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## OUTPUTS
-### Microsoft.Azure.Commands.CosmosDB.Models.PSDatabaseAccount
+### Microsoft.Azure.Commands.CosmosDB.Models.PSDatabaseAccountGetResults
## NOTES
diff --git a/src/CosmosDB/CosmosDB/help/Get-AzCosmosDBService.md b/src/CosmosDB/CosmosDB/help/Get-AzCosmosDBService.md
index 3da50130a237..217a1baac6ef 100644
--- a/src/CosmosDB/CosmosDB/help/Get-AzCosmosDBService.md
+++ b/src/CosmosDB/CosmosDB/help/Get-AzCosmosDBService.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.CosmosDB.dll-Help.xml
Module Name: Az.CosmosDB
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.cosmosdb/get-azcosmosdbservice
schema: 2.0.0
---
diff --git a/src/CosmosDB/CosmosDB/help/Get-AzCosmosDbClientEncryptionKey.md b/src/CosmosDB/CosmosDB/help/Get-AzCosmosDbClientEncryptionKey.md
index eee80f7d7866..5c64fec344ff 100644
--- a/src/CosmosDB/CosmosDB/help/Get-AzCosmosDbClientEncryptionKey.md
+++ b/src/CosmosDB/CosmosDB/help/Get-AzCosmosDbClientEncryptionKey.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.CosmosDB.dll-Help.xml
Module Name: Az.CosmosDB
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.cosmosdb/get-azcosmosdbclientencryptionkey
schema: 2.0.0
---
diff --git a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md
index 1f813839a851..2559a190444b 100644
--- a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md
+++ b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBAccount.md
@@ -675,11 +675,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## INPUTS
-### Microsoft.Azure.Commands.CosmosDB.Models.PSCorsRule[]
+### None
## OUTPUTS
-### Microsoft.Azure.Commands.CosmosDB.Models.PSDatabaseAccount
+### Microsoft.Azure.Commands.CosmosDB.Models.PSDatabaseAccountGetResults
## NOTES
diff --git a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBService.md b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBService.md
index e7cb5d56021e..701dec0afd6c 100644
--- a/src/CosmosDB/CosmosDB/help/New-AzCosmosDBService.md
+++ b/src/CosmosDB/CosmosDB/help/New-AzCosmosDBService.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.CosmosDB.dll-Help.xml
Module Name: Az.CosmosDB
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.cosmosdb/new-azcosmosdbservice
schema: 2.0.0
---
diff --git a/src/CosmosDB/CosmosDB/help/New-AzCosmosDbClientEncryptionKey.md b/src/CosmosDB/CosmosDB/help/New-AzCosmosDbClientEncryptionKey.md
index 7a718e4fcb94..39220ddce54d 100644
--- a/src/CosmosDB/CosmosDB/help/New-AzCosmosDbClientEncryptionKey.md
+++ b/src/CosmosDB/CosmosDB/help/New-AzCosmosDbClientEncryptionKey.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.CosmosDB.dll-Help.xml
Module Name: Az.CosmosDB
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.cosmosdb/new-azcosmosdbclientencryptionkey
schema: 2.0.0
---
diff --git a/src/CosmosDB/CosmosDB/help/Remove-AzCosmosDBAccount.md b/src/CosmosDB/CosmosDB/help/Remove-AzCosmosDBAccount.md
index 72d2f9154535..adeedc61fdf7 100644
--- a/src/CosmosDB/CosmosDB/help/Remove-AzCosmosDBAccount.md
+++ b/src/CosmosDB/CosmosDB/help/Remove-AzCosmosDBAccount.md
@@ -190,12 +190,14 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## INPUTS
-### Microsoft.Azure.Commands.CosmosDB.Models.PSDatabaseAccount
+### Microsoft.Azure.Commands.CosmosDB.Models.PSDatabaseAccountGetResults
## OUTPUTS
### System.Void
+### System.Boolean
+
## NOTES
## RELATED LINKS
diff --git a/src/CosmosDB/CosmosDB/help/Remove-AzCosmosDBService.md b/src/CosmosDB/CosmosDB/help/Remove-AzCosmosDBService.md
index d47f9fedb8ed..ae176411995f 100644
--- a/src/CosmosDB/CosmosDB/help/Remove-AzCosmosDBService.md
+++ b/src/CosmosDB/CosmosDB/help/Remove-AzCosmosDBService.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.CosmosDB.dll-Help.xml
Module Name: Az.CosmosDB
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.cosmosdb/remove-azcosmosdbservice
schema: 2.0.0
---
diff --git a/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md b/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md
index 464cfa2cb61e..1df92ca6aee8 100644
--- a/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md
+++ b/src/CosmosDB/CosmosDB/help/Update-AzCosmosDBAccount.md
@@ -556,11 +556,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## INPUTS
-### Microsoft.Azure.Commands.CosmosDB.Models.PSCorsRule[]
+### Microsoft.Azure.Commands.CosmosDB.Models.PSDatabaseAccountGetResults
## OUTPUTS
-### Microsoft.Azure.Commands.CosmosDB.Models.PSDatabaseAccount
+### Microsoft.Azure.Commands.CosmosDB.Models.PSDatabaseAccountGetResults
## NOTES
diff --git a/src/CosmosDB/CosmosDB/help/Update-AzCosmosDbClientEncryptionKey.md b/src/CosmosDB/CosmosDB/help/Update-AzCosmosDbClientEncryptionKey.md
index 6e3f3ef7a15e..0934c42a9932 100644
--- a/src/CosmosDB/CosmosDB/help/Update-AzCosmosDbClientEncryptionKey.md
+++ b/src/CosmosDB/CosmosDB/help/Update-AzCosmosDbClientEncryptionKey.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.CosmosDB.dll-Help.xml
Module Name: Az.CosmosDB
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.cosmosdb/update-azcosmosdbclientencryptionkey
schema: 2.0.0
---
diff --git a/src/DataFactory/DataFactoryV2.Test/DataFactoryV2.Test.csproj b/src/DataFactory/DataFactoryV2.Test/DataFactoryV2.Test.csproj
index 4fab12cb207b..0c37f5fdf883 100644
--- a/src/DataFactory/DataFactoryV2.Test/DataFactoryV2.Test.csproj
+++ b/src/DataFactory/DataFactoryV2.Test/DataFactoryV2.Test.csproj
@@ -11,7 +11,7 @@
-
+
diff --git a/src/DataFactory/DataFactoryV2/Changelog.md b/src/DataFactory/DataFactoryV2/Changelog.md
index 297b0d12a2d9..87fa3ef90284 100644
--- a/src/DataFactory/DataFactoryV2/Changelog.md
+++ b/src/DataFactory/DataFactoryV2/Changelog.md
@@ -18,6 +18,9 @@
- Additional information about change #1
-->
## Upcoming Release
+* Updated ADF .Net SDK version to 9.1.0
+* Added AzureBlobStorage containerUri and authenticationType properties in ADF
+* Added support copyComputeScale And pipelineExternalComputeScale in IntegrationRuntime
## Version 1.16.12
* Updated ADF .Net SDK version to 9.0.0
diff --git a/src/DataFactory/DataFactoryV2/DataFactoryV2.csproj b/src/DataFactory/DataFactoryV2/DataFactoryV2.csproj
index c9a7282ecf9e..5104cde60533 100644
--- a/src/DataFactory/DataFactoryV2/DataFactoryV2.csproj
+++ b/src/DataFactory/DataFactoryV2/DataFactoryV2.csproj
@@ -12,7 +12,7 @@
-
+
diff --git a/src/DataMigration/DataMigration/Cmdlets/GetAzureDataMigrationService.cs b/src/DataMigration/DataMigration/Cmdlets/GetAzureDataMigrationService.cs
index 938a99cde313..6f9daab5f36a 100644
--- a/src/DataMigration/DataMigration/Cmdlets/GetAzureDataMigrationService.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/GetAzureDataMigrationService.cs
@@ -22,7 +22,7 @@
namespace Microsoft.Azure.Commands.DataMigration.Cmdlets
{
///
- /// Cmdlet for getting Data Migration Service resource
+ /// Cmdlet for getting Azure Data Migration Service (classic) resource
///
[Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataMigrationService", DefaultParameterSetName = ResourceGroupSet), OutputType(typeof(PSDataMigrationService))]
[Alias("Get-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix+ "Dms")]
@@ -52,12 +52,12 @@ public class GetAzureDataMigrationService : DataMigrationCmdlet
public string ResourceGroupName { get; set; }
///
- /// Gets or sets the name of the data migration service.
+ /// Gets or sets the name of the Azure Database Migration Service (classic).
///
[Parameter(Mandatory = true,
Position = 1,
ParameterSetName = ServiceNameGroupSet,
- HelpMessage = "Name of Database Migration Service.")]
+ HelpMessage = "Name of Azure Database Migration Service (classic).")]
[ValidateNotNullOrEmpty]
[Alias("ServiceName")]
public string Name { get; set; }
diff --git a/src/DataMigration/DataMigration/Cmdlets/GetProjectCmdlet.cs b/src/DataMigration/DataMigration/Cmdlets/GetProjectCmdlet.cs
index 12b4e78c67a6..63338995860d 100644
--- a/src/DataMigration/DataMigration/Cmdlets/GetProjectCmdlet.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/GetProjectCmdlet.cs
@@ -22,7 +22,7 @@
namespace Microsoft.Azure.Commands.DataMigration.Cmdlets
{
///
- /// Class for the command let that creates a new instance of the Data Migration Service.
+ /// Class for the command let that creates a new instance of the Azure Database Migration Service (classic).
///
[Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataMigrationProject", DefaultParameterSetName = ComponentNameParameterSet), OutputType(typeof(PSProject))]
[Alias("Get-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DmsProject")]
@@ -43,7 +43,7 @@ public class GetProjectCmdlet : DataMigrationCmdlet
Mandatory = true,
ParameterSetName = ResourceIdParameterSet,
ValueFromPipelineByPropertyName = true,
- HelpMessage = "DataMigrationService Resource Id.")]
+ HelpMessage = "Azure Database Migration Service (classic) Resource Id.")]
[ValidateNotNullOrEmpty]
public string ResourceId { get; set; }
@@ -58,7 +58,7 @@ public class GetProjectCmdlet : DataMigrationCmdlet
[Parameter(
Mandatory = true,
ParameterSetName = ComponentNameParameterSet,
- HelpMessage = "Database Migration Service Name.")]
+ HelpMessage = "Azure Database Migration Service (classic) Name.")]
[ValidateNotNullOrEmpty]
public string ServiceName { get; set; }
diff --git a/src/DataMigration/DataMigration/Cmdlets/NewAzureRmDataMigrationService.cs b/src/DataMigration/DataMigration/Cmdlets/NewAzureRmDataMigrationService.cs
index e53de46f0e2e..44022c5ebce1 100644
--- a/src/DataMigration/DataMigration/Cmdlets/NewAzureRmDataMigrationService.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/NewAzureRmDataMigrationService.cs
@@ -35,21 +35,21 @@ public sealed class NewAzureRmDataMigrationService : DataMigrationCmdlet
[Parameter(
Mandatory = true,
- HelpMessage = "Database Migration Service Name.")]
+ HelpMessage = "Azure Database Migration Service (classic) Name.")]
[ValidateNotNullOrEmpty]
[Alias("ServiceName")]
public string Name { get; set; }
[Parameter(
Mandatory = true,
- HelpMessage = "The location of the instance of the Database Migration Service to be created. "
+ HelpMessage = "The location of the instance of the Azure Database Migration Service (classic) to be created. "
+ "This corresponds to an Azure region.")]
[ValidateNotNullOrEmpty]
public string Location { get; set; }
[Parameter(
Mandatory = true,
- HelpMessage = "The SKU for DataMigration service instance, possible values are GeneralPurpose_1vCore, GeneralPurpose_2vCores, GeneralPurpose_4vCores, BusinessCritical_4vCores"
+ HelpMessage = "The SKU for Azure Database Migration service (classic) instance, possible values are GeneralPurpose_1vCore, GeneralPurpose_2vCores, GeneralPurpose_4vCores, BusinessCritical_4vCores"
)]
[ValidateNotNullOrEmpty]
[PSArgumentCompleter("GeneralPurpose_1vCore", "GeneralPurpose_2vCores", "GeneralPurpose_4vCores", "BusinessCritical_4vCores")]
@@ -57,7 +57,7 @@ public sealed class NewAzureRmDataMigrationService : DataMigrationCmdlet
[Parameter(
Mandatory = true,
- HelpMessage = "The name of the subnet under the specified virtual network to be used for the Database Migration Service instance.")]
+ HelpMessage = "The name of the subnet under the specified virtual network to be used for the Azure Database Migration Service (classic) instance.")]
[ValidateNotNullOrEmpty]
public string VirtualSubnetId { get; set; }
@@ -73,7 +73,7 @@ public override void ExecuteCmdlet()
}
///
- /// Helper method that calls the creation of an instance of the Database Migration Service
+ /// Helper method that calls the creation of an instance of the Azure Database Migration Service (classic)
///
/// The instance of PSDataMigrationService that was created.
public DataMigrationService CreateService()
diff --git a/src/DataMigration/DataMigration/Cmdlets/NewDataMigrationTask.cs b/src/DataMigration/DataMigration/Cmdlets/NewDataMigrationTask.cs
index b2e7a8296652..6a889595a838 100644
--- a/src/DataMigration/DataMigration/Cmdlets/NewDataMigrationTask.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/NewDataMigrationTask.cs
@@ -82,7 +82,7 @@ public TaskTypeEnum TaskType
[Parameter(
Mandatory = true,
ParameterSetName = ComponentNameParameterSet,
- HelpMessage = "Database Migration Service Name.")]
+ HelpMessage = "Azure Database Migration Service (classic) Name.")]
[ValidateNotNullOrEmpty]
public string ServiceName { get; set; }
diff --git a/src/DataMigration/DataMigration/Cmdlets/NewProjectCmdlet.cs b/src/DataMigration/DataMigration/Cmdlets/NewProjectCmdlet.cs
index b7de54b3e9fa..b0955462a707 100644
--- a/src/DataMigration/DataMigration/Cmdlets/NewProjectCmdlet.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/NewProjectCmdlet.cs
@@ -44,7 +44,7 @@ public class NewProjectCmdlet : DataMigrationCmdlet
Mandatory = true,
ParameterSetName = ResourceIdParameterSet,
ValueFromPipelineByPropertyName = true,
- HelpMessage = "DataMigrationService Resource Id.")]
+ HelpMessage = "Azure Database Migration Service (classic) Resource Id.")]
[ValidateNotNullOrEmpty]
public string ResourceId { get; set; }
@@ -59,13 +59,13 @@ public class NewProjectCmdlet : DataMigrationCmdlet
[Parameter(
Mandatory = true,
ParameterSetName = ComponentNameParameterSet,
- HelpMessage = "Database Migration Service Name.")]
+ HelpMessage = "Azure Database Migration Service (classic) Name.")]
[ValidateNotNullOrEmpty]
public string ServiceName { get; set; }
[Parameter(
Mandatory = true,
- HelpMessage = "The location of the instance of the Database Migration Service")]
+ HelpMessage = "The location of the instance of the Azure Database Migration Service (classic)")]
[ValidateNotNullOrEmpty]
public string Location { get; set; }
diff --git a/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationProject.cs b/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationProject.cs
index 35496f47ea2b..f0825435cc1d 100644
--- a/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationProject.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationProject.cs
@@ -54,7 +54,7 @@ public class RemoveDataMigrationProject : DataMigrationCmdlet
[Parameter(
Mandatory = true,
ParameterSetName = ComponentNameParameterSet,
- HelpMessage = "Database Migration Service Name.")]
+ HelpMessage = "Azure Database Migration Service (classic) Name.")]
[ValidateNotNullOrEmpty]
public string ServiceName { get; set; }
diff --git a/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationService.cs b/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationService.cs
index 612d6f844330..5c7a538177a5 100644
--- a/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationService.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationService.cs
@@ -39,7 +39,7 @@ public class RemoveDataMigrationService : DataMigrationCmdlet
Mandatory = true,
ParameterSetName = ResourceIdParameterSet,
ValueFromPipelineByPropertyName = true,
- HelpMessage = "DataMigrationService Resource Id.")]
+ HelpMessage = "Azure Database Migration Service (classic) Resource Id.")]
[ValidateNotNullOrEmpty]
public string ResourceId { get; set; }
diff --git a/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationTask.cs b/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationTask.cs
index 72d43fc946d3..8419b208b465 100644
--- a/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationTask.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/RemoveDataMigrationTask.cs
@@ -54,7 +54,7 @@ public class RemoveDataMigrationTask : DataMigrationCmdlet
[Parameter(
Mandatory = true,
ParameterSetName = ComponentNameParameterSet,
- HelpMessage = "Database Migration Service Name.")]
+ HelpMessage = "Azure Database Migration Service (classic) Name.")]
[ValidateNotNullOrEmpty]
public string ServiceName { get; set; }
diff --git a/src/DataMigration/DataMigration/Cmdlets/StartDataMigrationService.cs b/src/DataMigration/DataMigration/Cmdlets/StartDataMigrationService.cs
index af0ca2abcd79..28c32d7b18d0 100644
--- a/src/DataMigration/DataMigration/Cmdlets/StartDataMigrationService.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/StartDataMigrationService.cs
@@ -38,7 +38,7 @@ public class StartDataMigrationService : DataMigrationCmdlet
Mandatory = true,
ParameterSetName = ResourceIdParameterSet,
ValueFromPipelineByPropertyName = true,
- HelpMessage = "DataMigrationService Resource Id.")]
+ HelpMessage = "Azure Database Migration Service (classic) Resource Id.")]
[ValidateNotNullOrEmpty]
public string ResourceId { get; set; }
@@ -53,7 +53,7 @@ public class StartDataMigrationService : DataMigrationCmdlet
[Parameter(
Mandatory = true,
ParameterSetName = ComponentNameParameterSet,
- HelpMessage = "Database Migration Service Name.")]
+ HelpMessage = "Azure Database Migration Service (classic) Name.")]
[ValidateNotNullOrEmpty]
[Alias("ServiceName")]
public string Name { get; set; }
diff --git a/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationService.cs b/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationService.cs
index e64654488503..88e18f26385f 100644
--- a/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationService.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationService.cs
@@ -38,7 +38,7 @@ public class StopDataMigrationService : DataMigrationCmdlet
Mandatory = true,
ParameterSetName = ResourceIdParameterSet,
ValueFromPipelineByPropertyName = true,
- HelpMessage = "DataMigrationService Resource Id.")]
+ HelpMessage = "Azure Database Migration Service (classic) Resource Id.")]
[ValidateNotNullOrEmpty]
public string ResourceId { get; set; }
@@ -53,7 +53,7 @@ public class StopDataMigrationService : DataMigrationCmdlet
[Parameter(
Mandatory = true,
ParameterSetName = ComponentNameParameterSet,
- HelpMessage = "Database Migration Service Name.")]
+ HelpMessage = "Azure Database Migration Service (classic) Name.")]
[ValidateNotNullOrEmpty]
[Alias("ServiceName")]
public string Name { get; set; }
diff --git a/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationTask.cs b/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationTask.cs
index d2ba922416de..d71004bdd235 100644
--- a/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationTask.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/StopDataMigrationTask.cs
@@ -54,7 +54,7 @@ public class StopDataMigrationTask : DataMigrationCmdlet
[Parameter(
Mandatory = true,
ParameterSetName = ComponentNameParameterSet,
- HelpMessage = "Database Migration Service Name.")]
+ HelpMessage = "Azure Database Migration Service (classic) Name.")]
[ValidateNotNullOrEmpty]
public string ServiceName { get; set; }
diff --git a/src/DataMigration/DataMigration/help/Az.DataMigration.md b/src/DataMigration/DataMigration/help/Az.DataMigration.md
index caac732726a4..8482072ce1f3 100644
--- a/src/DataMigration/DataMigration/help/Az.DataMigration.md
+++ b/src/DataMigration/DataMigration/help/Az.DataMigration.md
@@ -18,10 +18,10 @@ Start assessment on SQL Server instance(s)
Collect performance data for given SQL Server instance(s)
### [Get-AzDataMigrationProject](Get-AzDataMigrationProject.md)
-Retrieves the properties of an Azure Database Migration project.
+Retrieves the properties of an Azure Database Migration Service (classic) project.
### [Get-AzDataMigrationService](Get-AzDataMigrationService.md)
-Retrieves the properties associated with an instance of the Azure Database Migration Service.
+Retrieves the properties associated with an instance of the Azure Database Migration Service (classic).
### [Get-AzDataMigrationSkuRecommendation](Get-AzDataMigrationSkuRecommendation.md)
Gives SKU recommendations for Azure SQL offerings
@@ -39,7 +39,7 @@ Retrieve the registered Integration Runtime nodes and their monitoring data for
Retrieve the List of database migrations attached to the service.
### [Get-AzDataMigrationTask](Get-AzDataMigrationTask.md)
-Retrieves the PSProjectTask object associated with an Azure Database Migration Service migration task.
+Retrieves the PSProjectTask object associated with an Azure Database Migration Service (classic) migration task.
### [Get-AzDataMigrationToSqlDb](Get-AzDataMigrationToSqlDb.md)
Retrieve the specified database migration for a given SQL Db.
@@ -51,7 +51,7 @@ Retrieve the specified database migration for a given SQL Managed Instance.
Retrieve the specified database migration for a given SQL VM.
### [Invoke-AzDataMigrationCommand](Invoke-AzDataMigrationCommand.md)
-Creates a new command to be executed on an existing DMS task.
+Creates a new command to be executed on an existing DMS (classic) task.
### [Invoke-AzDataMigrationCutoverToSqlManagedInstance](Invoke-AzDataMigrationCutoverToSqlManagedInstance.md)
Initiate cutover for in-progress online database migration to SQL Managed Instance.
@@ -66,10 +66,10 @@ Create a new instance DataMigration Azure ActiveDirectory Application details.
Creates a new Connection Info object specifying the server type and name for connection.
### [New-AzDataMigrationDatabaseInfo](New-AzDataMigrationDatabaseInfo.md)
-Creates the DatabaseInfo object for the Azure Database Migration Service, which specifies the database source for migration.
+Creates the DatabaseInfo object for the Azure Database Migration Service (classic), which specifies the database source for migration.
### [New-AzDataMigrationFileShare](New-AzDataMigrationFileShare.md)
-Creates the FileShare object for the Azure Database Migration Service, which specifies the local network share to take the source database backups to.
+Creates the FileShare object for the Azure Database Migration Service (classic), which specifies the local network share to take the source database backups to.
### [New-AzDataMigrationLoginsMigration](New-AzDataMigrationLoginsMigration.md)
Migrate logins from the source Sql Servers to the target Azure Sql Servers.
@@ -81,13 +81,13 @@ Creates collection setting for migration according for the mongoDb migration
Creates database setting for migration for the mongoDb migration
### [New-AzDataMigrationProject](New-AzDataMigrationProject.md)
-Creates a new Azure Database Migration Service project.
+Creates a new Azure Database Migration Service (classic) project.
### [New-AzDataMigrationSelectedDBObject](New-AzDataMigrationSelectedDBObject.md)
Creates a database input object that contains information about source and target databases for migration.
### [New-AzDataMigrationService](New-AzDataMigrationService.md)
-Creates a new instance of the Azure Database Migration Service.
+Creates a new instance of the Azure Database Migration Service (classic).
### [New-AzDataMigrationSqlService](New-AzDataMigrationSqlService.md)
Create or Update Database Migration Service.
@@ -99,7 +99,7 @@ Regenerate a new set of Authentication Keys for Self Hosted Integration Runtime.
Creates a database info object specific to the sync scenario to be used for a migration task.
### [New-AzDataMigrationTask](New-AzDataMigrationTask.md)
-Creates and starts a data migration task in the Azure Database Migration Service.
+Creates and starts a data migration task in the Azure Database Migration Service (classic).
### [New-AzDataMigrationToSqlDb](New-AzDataMigrationToSqlDb.md)
Create a new database migration to a given SQL Db.
@@ -114,10 +114,10 @@ Create a new database migration to a given SQL VM.
Registers Sql Migration Service on Integration Runtime
### [Remove-AzDataMigrationProject](Remove-AzDataMigrationProject.md)
-Removes an Azure Database Migration Service project from Azure.
+Removes an Azure Database Migration Service (classic) project from Azure.
### [Remove-AzDataMigrationService](Remove-AzDataMigrationService.md)
-Removes an instance of the Azure Database Migration Service from Azure.
+Removes an instance of the Azure Database Migration Service (classic) from Azure.
### [Remove-AzDataMigrationSqlService](Remove-AzDataMigrationSqlService.md)
Delete Database Migration Service.
@@ -126,19 +126,19 @@ Delete Database Migration Service.
Delete the integration runtime node.
### [Remove-AzDataMigrationTask](Remove-AzDataMigrationTask.md)
-Removes an Azure Database Migration Service task from Azure.
+Removes an Azure Database Migration Service (classic) task from Azure.
### [Remove-AzDataMigrationToSqlDb](Remove-AzDataMigrationToSqlDb.md)
Remove the specified database migration for a given SQL Db.
### [Start-AzDataMigrationService](Start-AzDataMigrationService.md)
-Starts an instance of the Azure Database Migration Service in a stopped state.
+Starts an instance of the Azure Database Migration Service (classic) in a stopped state.
### [Stop-AzDataMigrationService](Stop-AzDataMigrationService.md)
-Stops an instance of the Azure Database Migration Service that is in a running state.
+Starts an instance of the Azure Database Migration Service (classic) in a stopped state.
### [Stop-AzDataMigrationTask](Stop-AzDataMigrationTask.md)
-Stops an Azure Database Migration Service task that is in a running state.
+Stops an Azure Database Migration Service (classic) task that is in a running state.
### [Stop-AzDataMigrationToSqlDb](Stop-AzDataMigrationToSqlDb.md)
Stop in-progress database migration to SQL Db.
diff --git a/src/DataMigration/DataMigration/help/Get-AzDataMigrationProject.md b/src/DataMigration/DataMigration/help/Get-AzDataMigrationProject.md
index ef4363013e62..ac2988d5af3b 100644
--- a/src/DataMigration/DataMigration/help/Get-AzDataMigrationProject.md
+++ b/src/DataMigration/DataMigration/help/Get-AzDataMigrationProject.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# Get-AzDataMigrationProject
## SYNOPSIS
-Retrieves the properties of an Azure Database Migration project.
+Retrieves the properties of an Azure Database Migration Service (classic) project.
## SYNTAX
diff --git a/src/DataMigration/DataMigration/help/Get-AzDataMigrationService.md b/src/DataMigration/DataMigration/help/Get-AzDataMigrationService.md
index e8119a47912e..d38e24a76da7 100644
--- a/src/DataMigration/DataMigration/help/Get-AzDataMigrationService.md
+++ b/src/DataMigration/DataMigration/help/Get-AzDataMigrationService.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# Get-AzDataMigrationService
## SYNOPSIS
-Retrieves the properties associated with an instance of the Azure Database Migration Service.
+Retrieves the properties associated with an instance of the Azure Database Migration Service (classic).
## SYNTAX
@@ -31,7 +31,7 @@ Get-AzDataMigrationService [-ResourceGroupName] [-Name]
```
## DESCRIPTION
-The Get-AzDataMigrationService cmdlet retrieves the properties associated with an instance of the Azure Database Migration Service based on Service name and Azure Resource Group name as input parameters.
+The Get-AzDataMigrationService cmdlet retrieves the properties associated with an instance of the Azure Database Migration Service (classic) based on Service name and Azure Resource Group name as input parameters.
## EXAMPLES
@@ -40,14 +40,14 @@ The Get-AzDataMigrationService cmdlet retrieves the properties associated with a
Get-AzDataMigrationService -ResourceGroupName testResourceGroup -Name testService
```
-The above example retrieves the properties of the Azure Database Migration Service instance called testService.
+The above example retrieves the properties of the Azure Database Migration Service (classic) instance called testService.
### Example 2
```powershell
Get-AzDataMigrationService -ResourceGroupName testResourceGroup
```
-The above example retrieves Azure Database Migration Services in the resource group called testResourceGroup.
+The above example retrieves Azure Database Migration Services (classic) in the resource group called testResourceGroup.
## PARAMETERS
@@ -67,7 +67,7 @@ Accept wildcard characters: False
```
### -Name
-Name of Database Migration Service.
+Name of Azure Database Migration Service (classic).
```yaml
Type: System.String
diff --git a/src/DataMigration/DataMigration/help/Get-AzDataMigrationTask.md b/src/DataMigration/DataMigration/help/Get-AzDataMigrationTask.md
index 0680d76cf52c..bb9bf624d468 100644
--- a/src/DataMigration/DataMigration/help/Get-AzDataMigrationTask.md
+++ b/src/DataMigration/DataMigration/help/Get-AzDataMigrationTask.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# Get-AzDataMigrationTask
## SYNOPSIS
-Retrieves the PSProjectTask object associated with an Azure Database Migration Service migration task.
+Retrieves the PSProjectTask object associated with an Azure Database Migration Service (classic) migration task.
## SYNTAX
@@ -67,7 +67,7 @@ Get-AzDataMigrationTask -ResourceGroupName -ServiceName -Proje
```
## DESCRIPTION
-The Get-AzDataMigrationTask cmdlet retrieves the properties associated with an Azure Database Migration Service migration task.
+The Get-AzDataMigrationTask cmdlet retrieves the properties associated with an Azure Database Migration Service (classic) migration task.
## EXAMPLES
@@ -76,7 +76,7 @@ The Get-AzDataMigrationTask cmdlet retrieves the properties associated with an A
Get-AzDataMigrationTask -TaskName myTestTask -ServiceName myTestService -ProjectName MyTestProject -ResourceGroupName MyResourceGroup -Expand
```
-The above example illustrates the use of Get-AzDataMigrationTask cmdlet to retrieve the properties associated with an Azure Database Migration Service migration task based on task name passed in as input parameter
+The above example illustrates the use of Get-AzDataMigrationTask cmdlet to retrieve the properties associated with an Azure Database Migration Service (classic) migration task based on task name passed in as input parameter
### Example 2
```powershell
diff --git a/src/DataMigration/DataMigration/help/Invoke-AzDataMigrationCommand.md b/src/DataMigration/DataMigration/help/Invoke-AzDataMigrationCommand.md
index f500d171ed4e..40b544167541 100644
--- a/src/DataMigration/DataMigration/help/Invoke-AzDataMigrationCommand.md
+++ b/src/DataMigration/DataMigration/help/Invoke-AzDataMigrationCommand.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# Invoke-AzDataMigrationCommand
## SYNOPSIS
-Creates a new command to be executed on an existing DMS task.
+Creates a new command to be executed on an existing DMS (classic) task.
## SYNTAX
diff --git a/src/DataMigration/DataMigration/help/New-AzDataMigrationFileShare.md b/src/DataMigration/DataMigration/help/New-AzDataMigrationFileShare.md
index 82c45ea57c64..aca53eb98785 100644
--- a/src/DataMigration/DataMigration/help/New-AzDataMigrationFileShare.md
+++ b/src/DataMigration/DataMigration/help/New-AzDataMigrationFileShare.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# New-AzDataMigrationFileShare
## SYNOPSIS
-Creates the FileShare object for the Azure Database Migration Service, which specifies the local network share to take the source database backups to.
+Creates the FileShare object for the Azure Database Migration Service (classic), which specifies the local network share to take the source database backups to.
## SYNTAX
@@ -18,7 +18,7 @@ New-AzDataMigrationFileShare -Path -Credential
```
## DESCRIPTION
-The New-AzDataMigrationFileShare cmdlet creates the FileShare object that specifies the local network share that Azure Database Migration Service can take source database backups to. The service account running source SQL Server instance must have write privileges on this network share.
+The New-AzDataMigrationFileShare cmdlet creates the FileShare object that specifies the local network share that Azure Database Migration Service (classic) can take source database backups to. The service account running source SQL Server instance must have write privileges on this network share.
## EXAMPLES
diff --git a/src/DataMigration/DataMigration/help/New-AzDataMigrationProject.md b/src/DataMigration/DataMigration/help/New-AzDataMigrationProject.md
index 73c46f584041..ac5e480ad326 100644
--- a/src/DataMigration/DataMigration/help/New-AzDataMigrationProject.md
+++ b/src/DataMigration/DataMigration/help/New-AzDataMigrationProject.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# New-AzDataMigrationProject
## SYNOPSIS
-Creates a new Azure Database Migration Service project.
+Creates a new Azure Database Migration Service (classic) project.
## SYNTAX
@@ -37,7 +37,7 @@ New-AzDataMigrationProject [-ResourceId] -Location -Name -Name -Location
```
## DESCRIPTION
-The New-AzDataMigrationService cmdlet creates a new instance of the Azure Database Migration Service. This cmdlet takes in name of existing Azure Resource Group, the unique name for the new instance of the Azure Database Migration Service to be created, the region in which the instance is provisioned, the name of the DMS Worker SKU, and the name of the Azure Virtual Subnet on which the service is to reside. There is no parameter for subscription name, because it is expected for the user to specify the default subscription of the Azure login session or execute Get-AzSubscription -SubscriptionName "MySubscription" | Select-AzSubscription to select another subscription.
+The New-AzDataMigrationService cmdlet creates a new instance of the Azure Database Migration Service (classic). This cmdlet takes in name of existing Azure Resource Group, the unique name for the new instance of the Azure Database Migration Service to be created, the region in which the instance is provisioned, the name of the DMS Worker SKU, and the name of the Azure Virtual Subnet on which the service is to reside. There is no parameter for subscription name, because it is expected for the user to specify the default subscription of the Azure login session or execute Get-AzSubscription -SubscriptionName "MySubscription" | Select-AzSubscription to select another subscription.
## EXAMPLES
@@ -27,7 +27,7 @@ The New-AzDataMigrationService cmdlet creates a new instance of the Azure Databa
New-AzDataMigrationService -ResourceGroupName myResourceGroup -Name TestService -Location "Central US" -Sku Basic_2vCores -VirtualSubnetId $virtualSubNetId
```
-The above example shows how to create a new instance of the Azure Database Migration Service named TestService in Central US region.
+The above example shows how to create a new instance of the Azure Database Migration Service (classic) named TestService in Central US region.
## PARAMETERS
@@ -47,7 +47,7 @@ Accept wildcard characters: False
```
### -Location
-The location of the Azure Database Migration Service instance to be created, which corresponds to an Azure region.
+The location of the Azure Database Migration Service (classic) instance to be created, which corresponds to an Azure region.
```yaml
Type: System.String
@@ -62,7 +62,7 @@ Accept wildcard characters: False
```
### -Name
-Database Migration Service Name.
+Azure Database Migration Service (classic) Name.
```yaml
Type: System.String
@@ -92,7 +92,7 @@ Accept wildcard characters: False
```
### -Sku
-The sku for the Azure Database Migration Service instance. Possible values currently are Standard_1vCores, Standard_2vCores, Standard_4vCores, Premium_4vCores.
+The sku for the Azure Database Migration Service (classic) instance. Possible values currently are Standard_1vCores, Standard_2vCores, Standard_4vCores, Premium_4vCores.
```yaml
Type: System.String
@@ -107,7 +107,7 @@ Accept wildcard characters: False
```
### -VirtualSubnetId
-The name of the subnet under the specified virtual network to use for the Azure Database Migration Service instance.
+The name of the subnet under the specified virtual network to use for the Azure Database Migration Service (classic) instance.
```yaml
Type: System.String
diff --git a/src/DataMigration/DataMigration/help/New-AzDataMigrationTask.md b/src/DataMigration/DataMigration/help/New-AzDataMigrationTask.md
index 3d8f541228b4..18756904fe3e 100644
--- a/src/DataMigration/DataMigration/help/New-AzDataMigrationTask.md
+++ b/src/DataMigration/DataMigration/help/New-AzDataMigrationTask.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# New-AzDataMigrationTask
## SYNOPSIS
-Creates and starts a data migration task in the Azure Database Migration Service.
+Creates and starts a data migration task in the Azure Database Migration Service (classic).
## SYNTAX
@@ -32,7 +32,7 @@ New-AzDataMigrationTask [-ResourceId] -TaskType -Name [-Force] [-DeleteRunningTas
```
## DESCRIPTION
-The Remove-AzDataMigrationProject cmdlet removes an Azure Database Migration Service project from Azure. Supplying the DeleteRunningTask parameter removes all of the Azure Database Migration Service tasks associated with the project that is being removed.
+The Remove-AzDataMigrationProject cmdlet removes an Azure Database Migration Service (classic) project from Azure. Supplying the DeleteRunningTask parameter removes all of the Azure Database Migration Service (classic) tasks associated with the project that is being removed.
## EXAMPLES
@@ -41,14 +41,14 @@ The Remove-AzDataMigrationProject cmdlet removes an Azure Database Migration Ser
Remove-AzDataMigrationProject -ResourceGroupName myResourceGroup -ServiceName myDMService -ProjectName myDMProject
```
-The above example removes the Azure Database Migration Service project called myDMProject from Azure based on name as input parameter
+The above example removes the Azure Database Migration Service (classic) project called myDMProject from Azure based on name as input parameter
### Example 2
```powershell
Remove-AzDataMigrationProject -InputObject $myDMSProject
```
-The above example removes the Azure Database Migration Service project based on PSProject object as input parameter.
+The above example removes the Azure Database Migration Service (classic) project based on PSProject object as input parameter.
## PARAMETERS
@@ -174,7 +174,7 @@ Accept wildcard characters: False
```
### -ServiceName
-Database Migration Service Name.
+Azure Database Migration Service (classic) Name.
```yaml
Type: System.String
diff --git a/src/DataMigration/DataMigration/help/Remove-AzDataMigrationService.md b/src/DataMigration/DataMigration/help/Remove-AzDataMigrationService.md
index 474a3832c037..d9d16e8ee38f 100644
--- a/src/DataMigration/DataMigration/help/Remove-AzDataMigrationService.md
+++ b/src/DataMigration/DataMigration/help/Remove-AzDataMigrationService.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# Remove-AzDataMigrationService
## SYNOPSIS
-Removes an instance of the Azure Database Migration Service from Azure.
+Removes an instance of the Azure Database Migration Service (classic) from Azure.
## SYNTAX
@@ -31,7 +31,7 @@ Remove-AzDataMigrationService [-ResourceId] [-Force] [-DeleteRunningTas
```
## DESCRIPTION
-The Remove-AzDataMigrationService cmdlet removes an instance of the Azure Database Migration Service from Azure. Supplying the DeleteRunningTask parameter removes all of the Azure Database Migration Service tasks associated with the service that is being removed.
+The Remove-AzDataMigrationService cmdlet removes an instance of the Azure Database Migration Service (classic) from Azure. Supplying the DeleteRunningTask parameter removes all of the Azure Database Migration Service (classic) tasks associated with the service that is being removed.
## EXAMPLES
@@ -40,7 +40,7 @@ The Remove-AzDataMigrationService cmdlet removes an instance of the Azure Databa
Remove-AzDataMigrationService -ResourceGroupName MyResourceGroup -ServiceName TestService
```
-The above example removes an instance of the Azure Database Migration Service named TestService that is contained in an Azure Resource Group named MyResourceGroup.
+The above example removes an instance of the Azure Database Migration Service (classic) named TestService that is contained in an Azure Resource Group named MyResourceGroup.
## PARAMETERS
@@ -105,7 +105,7 @@ Accept wildcard characters: False
```
### -Name
-The name of the Database Migration Service.
+The name of the Azure Database Migration Service (classic).
```yaml
Type: System.String
diff --git a/src/DataMigration/DataMigration/help/Remove-AzDataMigrationTask.md b/src/DataMigration/DataMigration/help/Remove-AzDataMigrationTask.md
index 24aa15333754..af083979d630 100644
--- a/src/DataMigration/DataMigration/help/Remove-AzDataMigrationTask.md
+++ b/src/DataMigration/DataMigration/help/Remove-AzDataMigrationTask.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# Remove-AzDataMigrationTask
## SYNOPSIS
-Removes an Azure Database Migration Service task from Azure.
+Removes an Azure Database Migration Service (classic) task from Azure.
## SYNTAX
@@ -32,7 +32,7 @@ Remove-AzDataMigrationTask [-ResourceId] [-Force] [-PassThru]
```
## DESCRIPTION
-The Remove-AzDataMigrationTask cmdlet removes an Azure Database Migration Service task from Azure.
+The Remove-AzDataMigrationTask cmdlet removes an Azure Database Migration Service (classic) task from Azure.
## EXAMPLES
@@ -41,14 +41,14 @@ The Remove-AzDataMigrationTask cmdlet removes an Azure Database Migration Servic
Remove-AzDataMigrationTask -TaskName TestTask -ProjectName myTestProject -ServiceName MyTestService -ResourceGroupName MyResourceGroup
```
-The preceding example removes an Azure Database Migration Service task named TestTask from Azure based on task name parameter.
+The preceding example removes an Azure Database Migration Service (classic) task named TestTask from Azure based on task name parameter.
### Example 2
```powershell
Remove-AzDataMigrationTask -InputObject $TestTask
```
-The preceding example removes an Azure Database Migration Service task based on PSProjectTask object passed in.
+The preceding example removes an Azure Database Migration Service (classic) task based on PSProjectTask object passed in.
## PARAMETERS
@@ -174,7 +174,7 @@ Accept wildcard characters: False
```
### -ServiceName
-Database Migration Service Name.
+Azure Database Migration Service (classic) Name.
```yaml
Type: System.String
diff --git a/src/DataMigration/DataMigration/help/Start-AzDataMigrationService.md b/src/DataMigration/DataMigration/help/Start-AzDataMigrationService.md
index 1fd81c5f29e0..a98eaa9a0d46 100644
--- a/src/DataMigration/DataMigration/help/Start-AzDataMigrationService.md
+++ b/src/DataMigration/DataMigration/help/Start-AzDataMigrationService.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# Start-AzDataMigrationService
## SYNOPSIS
-Starts an instance of the Azure Database Migration Service in a stopped state.
+Starts an instance of the Azure Database Migration Service (classic) in a stopped state.
## SYNTAX
@@ -31,7 +31,7 @@ Start-AzDataMigrationService [-ResourceId] [-PassThru] [-DefaultProfile
```
## DESCRIPTION
-The Start-AzDataMigrationService cmdlet starts an instance of the Azure Database Migration Service in a stopped state.
+The Start-AzDataMigrationService cmdlet starts an instance of the Azure Database Migration Service (classic) in a stopped state.
## EXAMPLES
@@ -40,14 +40,14 @@ The Start-AzDataMigrationService cmdlet starts an instance of the Azure Database
Start-AzDataMigrationService -ResourceGroupName MyResourceGroup -ServiceName TestService
```
-The above example starts an Azure Database Migration Service instance named Test Service in a stopped state based on service name passed in as input
+The above example starts an Azure Database Migration Service (classic) instance named Test Service in a stopped state based on service name passed in as input
### Example 2
```powershell
Start-AzDataMigrationService -InputObject $TestService
```
-The above example starts an Azure Database Migration Service instance based on PSDataMigrationService passed in as input parameter
+The above example starts an Azure Database Migration Service (classic) instance based on PSDataMigrationService passed in as input parameter
## PARAMETERS
@@ -82,7 +82,7 @@ Accept wildcard characters: False
```
### -Name
-Database Migration Service Name.
+Azure Database Migration Service (classic) Name.
```yaml
Type: System.String
diff --git a/src/DataMigration/DataMigration/help/Stop-AzDataMigrationService.md b/src/DataMigration/DataMigration/help/Stop-AzDataMigrationService.md
index dd437a12bddc..f0863e468d13 100644
--- a/src/DataMigration/DataMigration/help/Stop-AzDataMigrationService.md
+++ b/src/DataMigration/DataMigration/help/Stop-AzDataMigrationService.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# Stop-AzDataMigrationService
## SYNOPSIS
-Stops an instance of the Azure Database Migration Service that is in a running state.
+Stops an instance of the Azure Database Migration Service (classic) that is in a running state.
## SYNTAX
@@ -31,7 +31,7 @@ Stop-AzDataMigrationService [-ResourceId] [-PassThru] [-DefaultProfile
```
## DESCRIPTION
-The Stop-AzDataMigrationService cmdlet stops an instance of the Azure Database Migration Service that is in a running state.
+The Stop-AzDataMigrationService cmdlet stops an instance of the Azure Database Migration Service (classic) that is in a running state.
## EXAMPLES
@@ -40,14 +40,14 @@ The Stop-AzDataMigrationService cmdlet stops an instance of the Azure Database M
Stop-AzDataMigrationService -ResourceGroupName MyResourceGroup -ServiceName TestService
```
-The above example stops an instance of the Azure Database Migration Service called TestService based on service name passed in as input parameter
+The above example stops an instance of the Azure Database Migration Service (classic) called TestService based on service name passed in as input parameter
### Example 2
```powershell
Stop-AzDataMigrationService -InputObject $TestService
```
-The above example stops an instance of the Azure Database Migration Service based on PSDataMigrationService object passed as input parameter.
+The above example stops an instance of the Azure Database Migration Service (classic) based on PSDataMigrationService object passed as input parameter.
## PARAMETERS
@@ -82,7 +82,7 @@ Accept wildcard characters: False
```
### -Name
-Database Migration Service Name.
+Azure Database Migration Service (classic) Name.
```yaml
Type: System.String
diff --git a/src/DataMigration/DataMigration/help/Stop-AzDataMigrationTask.md b/src/DataMigration/DataMigration/help/Stop-AzDataMigrationTask.md
index 4ac3d1726710..daa12ac08433 100644
--- a/src/DataMigration/DataMigration/help/Stop-AzDataMigrationTask.md
+++ b/src/DataMigration/DataMigration/help/Stop-AzDataMigrationTask.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# Stop-AzDataMigrationTask
## SYNOPSIS
-Stops an Azure Database Migration Service task that is in a running state.
+Stops an Azure Database Migration Service (classic) task that is in a running state.
## SYNTAX
@@ -40,14 +40,14 @@ Stop-AzDataMigrationTask cmdlet stops database migration activity in running sta
Stop-AzDataMigrationTask -ResourceGroupName MyResourceGroup -ServiceName TestService -ProjectName myDMSProject -Name myDMSTask
```
-Above example stops Azure Database Migration Service task named myDMSTask associated with project myDMSProject and Azure Database Migration Service instance named TestService
+Above example stops Azure Database Migration Service (classic) task named myDMSTask associated with project myDMSProject and Azure Database Migration Service instance named TestService
### Example 2
```powershell
Stop-AzDataMigrationTask -InputObject $MyDMSTask
```
-Above example stops Azure Database Migration Service task passed in as input parameter PSProjectTask object
+Above example stops Azure Database Migration Service (classic) task passed in as input parameter PSProjectTask object
## PARAMETERS
@@ -158,7 +158,7 @@ Accept wildcard characters: False
```
### -ServiceName
-Database Migration Service Name.
+Azure Database Migration Service (classic) Name.
```yaml
Type: System.String
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/DynatraceObservability/help/New-AzDynatraceMonitorFilteringTagObject.md b/src/DynatraceObservability/help/New-AzDynatraceMonitorFilteringTagObject.md
index 5e47e378673c..b00d12e285c4 100644
--- a/src/DynatraceObservability/help/New-AzDynatraceMonitorFilteringTagObject.md
+++ b/src/DynatraceObservability/help/New-AzDynatraceMonitorFilteringTagObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.DynatraceObservability
-online version: https://learn.microsoft.com/powershell/module/az.Dynatrace/new-AzDynatraceMonitorFilteringTagObject
+online version: https://learn.microsoft.com/powershell/module/az.dynatraceobservability/new-azdynatracemonitorfilteringtagobject
schema: 2.0.0
---
diff --git a/src/ElasticSan/help/Add-AzElasticSanVolumeGroupNetworkRule.md b/src/ElasticSan/help/Add-AzElasticSanVolumeGroupNetworkRule.md
index 2227bab39654..2669e536f4dc 100644
--- a/src/ElasticSan/help/Add-AzElasticSanVolumeGroupNetworkRule.md
+++ b/src/ElasticSan/help/Add-AzElasticSanVolumeGroupNetworkRule.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.ElasticSan
-online version: https://learn.microsoft.com/powershell/module/az.elasticsan/update-azelasticsanvolumegroup
+online version: https://learn.microsoft.com/powershell/module/az.elasticsan/add-azelasticsanvolumegroupnetworkrule
schema: 2.0.0
---
diff --git a/src/ElasticSan/help/Remove-AzElasticSanVolumeGroupNetworkRule.md b/src/ElasticSan/help/Remove-AzElasticSanVolumeGroupNetworkRule.md
index 2f6fb5f6e0d3..6fdb42b62248 100644
--- a/src/ElasticSan/help/Remove-AzElasticSanVolumeGroupNetworkRule.md
+++ b/src/ElasticSan/help/Remove-AzElasticSanVolumeGroupNetworkRule.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.ElasticSan
-online version: https://learn.microsoft.com/powershell/module/az.elasticsan/add-azelasticsanvolumegroupnetworkrule
+online version: https://learn.microsoft.com/powershell/module/az.elasticsan/remove-azelasticsanvolumegroupnetworkrule
schema: 2.0.0
---
diff --git a/src/EventGrid/EventGrid/help/Az.EventGrid.md b/src/EventGrid/EventGrid/help/Az.EventGrid.md
index a3c1b5a98705..007483b9b43f 100644
--- a/src/EventGrid/EventGrid/help/Az.EventGrid.md
+++ b/src/EventGrid/EventGrid/help/Az.EventGrid.md
@@ -11,6 +11,12 @@ Locale: en-US
This topic displays help for the Azure Event Grid PowerShell resource manager cmdlets.
## Az.EventGrid Cmdlets
+### [Enable-AzEventGridPartnerTopic](Enable-AzEventGridPartnerTopic.md)
+Enables an Event Grid partner topic.
+
+### [Get-AzEventGridChannel](Get-AzEventGridChannel.md)
+Gets the details of an Event Grid channel or gets a list of all Event Grid channels in a given partner namespace.
+
### [Get-AzEventGridDomain](Get-AzEventGridDomain.md)
Gets the details of an Event Grid domain, or gets a list of all Event Grid domains in the current Azure subscription.
@@ -20,9 +26,33 @@ Gets the shared access keys used to publish events to an Event Grid domain.
### [Get-AzEventGridDomainTopic](Get-AzEventGridDomainTopic.md)
Gets the details of an Event Grid domain topic, or gets a list of all Event Grid domain topics under specific Event Grid domain in the current Azure subscription.
+### [Get-AzEventGridFullUrlForPartnerTopicEventSubscription](Get-AzEventGridFullUrlForPartnerTopicEventSubscription.md)
+Gets the full URL for partner topic event subscription
+
### [Get-AzEventGridFullUrlForSystemTopicEventSubscription](Get-AzEventGridFullUrlForSystemTopicEventSubscription.md)
Gets the full URL for system topic event subscription
+### [Get-AzEventGridPartnerConfiguration](Get-AzEventGridPartnerConfiguration.md)
+Gets the details of an Event Grid partner configuration, or gets a lost of partner configurations in the current Azure subscription.
+
+### [Get-AzEventGridPartnerNamespace](Get-AzEventGridPartnerNamespace.md)
+Gets the details of an Event Grid partner namespace, or lists partner namespaces at the scope of the current Azure subscription or specified resource group.
+
+### [Get-AzEventGridPartnerNamespaceKey](Get-AzEventGridPartnerNamespaceKey.md)
+Gets the details of an Event Grid partner namespace key.
+
+### [Get-AzEventGridPartnerRegistration](Get-AzEventGridPartnerRegistration.md)
+Gets the details of an Event Grid partner registration, or gets a list of Event Grid partner registrations.
+
+### [Get-AzEventGridPartnerTopic](Get-AzEventGridPartnerTopic.md)
+Gets the details of an Event Grid partner topic, or gets a list of Event Grid partner topics.
+
+### [Get-AzEventGridPartnerTopicEventSubscription](Get-AzEventGridPartnerTopicEventSubscription.md)
+Gets the details of an event subscription, or gets a list of all event subscriptions for a given Azure Event Grid partner topic.
+
+### [Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute](Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute.md)
+Gets the delivery attributes for partner topic event subscription
+
### [Get-AzEventGridSubscription](Get-AzEventGridSubscription.md)
Gets the details of an event subscription, or gets a list of all event subscriptions in the current Azure subscription.
@@ -44,6 +74,15 @@ Gets the shared access keys used to publish events to an Event Grid topic.
### [Get-AzEventGridTopicType](Get-AzEventGridTopicType.md)
Gets the details about the topic types supported by Azure Event Grid.
+### [Get-AzEventGridVerifiedPartner](Get-AzEventGridVerifiedPartner.md)
+Gets the details of a specific Event Grid verified partner or gets the details of all verified partners in the current azure subscription.
+
+### [Grant-AzEventGridPartnerConfiguration](Grant-AzEventGridPartnerConfiguration.md)
+Grants access to a partner for the specified partner configuration.
+
+### [New-AzEventGridChannel](New-AzEventGridChannel.md)
+Creates a new Event Grid channel.
+
### [New-AzEventGridDomain](New-AzEventGridDomain.md)
Creates a new Azure Event Grid Domain.
@@ -53,6 +92,24 @@ Regenerates the shared access key for an Azure Event Grid Domain.
### [New-AzEventGridDomainTopic](New-AzEventGridDomainTopic.md)
Creates a new Azure Event Grid Domain Topic.
+### [New-AzEventGridPartnerConfiguration](New-AzEventGridPartnerConfiguration.md)
+Creates a new Event Grid partner configuration.
+
+### [New-AzEventGridPartnerNamespace](New-AzEventGridPartnerNamespace.md)
+Creates a new Event Grid partner namespace.
+
+### [New-AzEventGridPartnerNamespaceKey](New-AzEventGridPartnerNamespaceKey.md)
+Regenerates the shared access key for an Azure Event Grid partner namespace.
+
+### [New-AzEventGridPartnerRegistration](New-AzEventGridPartnerRegistration.md)
+Creates a new Event Grid partner registration.
+
+### [New-AzEventGridPartnerTopic](New-AzEventGridPartnerTopic.md)
+Creates a new Azure Event Grid Partner Topic.
+
+### [New-AzEventGridPartnerTopicEventSubscription](New-AzEventGridPartnerTopicEventSubscription.md)
+Creates a new Azure Event Grid Event Subscription to a Partner topic.
+
### [New-AzEventGridSubscription](New-AzEventGridSubscription.md)
Creates a new Azure Event Grid Event Subscription to a topic, Azure resource, Azure subscription or Resource Group.
@@ -68,24 +125,60 @@ Creates a new Azure Event Grid Topic.
### [New-AzEventGridTopicKey](New-AzEventGridTopicKey.md)
Regenerates the shared access key for an Azure Event Grid Topic.
+### [Remove-AzEventGridChannel](Remove-AzEventGridChannel.md)
+Removes an Azure Event Grid Channel.
+
### [Remove-AzEventGridDomain](Remove-AzEventGridDomain.md)
Removes an Azure Event Grid Domain.
### [Remove-AzEventGridDomainTopic](Remove-AzEventGridDomainTopic.md)
Removes an Azure Event Grid Domain Topic.
+### [Remove-AzEventGridPartnerConfiguration](Remove-AzEventGridPartnerConfiguration.md)
+Removes an Azure Event Grid Partner Configuration.
+
+### [Remove-AzEventGridPartnerNamespace](Remove-AzEventGridPartnerNamespace.md)
+Removes an Azure Event Grid Partner Namespace.
+
+### [Remove-AzEventGridPartnerRegistration](Remove-AzEventGridPartnerRegistration.md)
+Removes an Azure Event Grid Partner Registration.
+
+### [Remove-AzEventGridPartnerTopic](Remove-AzEventGridPartnerTopic.md)
+Removes an Azure Event Grid Partner Topic.
+
+### [Remove-AzEventGridPartnerTopicEventSubscription](Remove-AzEventGridPartnerTopicEventSubscription.md)
+Removes an Azure Event Grid partner topic event subscription.
+
### [Remove-AzEventGridSubscription](Remove-AzEventGridSubscription.md)
Removes an Azure Event Grid event subscription.
### [Remove-AzEventGridSystemTopic](Remove-AzEventGridSystemTopic.md)
Removes an Azure Event Grid System Topic.
+### [Remove-AzEventGridSystemTopicEventSubscription](Remove-AzEventGridSystemTopicEventSubscription.md)
+Removes an Azure Event Grid system topic event subscription.
+
### [Remove-AzEventGridTopic](Remove-AzEventGridTopic.md)
Removes an Azure Event Grid Topic.
+### [Revoke-AzEventGridPartnerConfiguration](Revoke-AzEventGridPartnerConfiguration.md)
+Revokes access to a partner in a partner configuration.
+
### [Set-AzEventGridTopic](Set-AzEventGridTopic.md)
Sets the properties of an Event Grid topic.
+### [Update-AzEventGridChannel](Update-AzEventGridChannel.md)
+Updates the properties of an Event Grid channel.
+
+### [Update-AzEventGridPartnerConfiguration](Update-AzEventGridPartnerConfiguration.md)
+Updates the details of an Event Grid partner configuration.
+
+### [Update-AzEventGridPartnerTopic](Update-AzEventGridPartnerTopic.md)
+Updates the properties of an Event Grid partner topic.
+
+### [Update-AzEventGridPartnerTopicEventSubscription](Update-AzEventGridPartnerTopicEventSubscription.md)
+Update the properties of an Event Grid System partner event subscription.
+
### [Update-AzEventGridSubscription](Update-AzEventGridSubscription.md)
Update the properties of an Event Grid event subscription.
diff --git a/src/EventGrid/EventGrid/help/Enable-AzEventGridPartnerTopic.md b/src/EventGrid/EventGrid/help/Enable-AzEventGridPartnerTopic.md
index 62650fa8ec6b..76147f25c6fa 100644
--- a/src/EventGrid/EventGrid/help/Enable-AzEventGridPartnerTopic.md
+++ b/src/EventGrid/EventGrid/help/Enable-AzEventGridPartnerTopic.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/enable-azeventgridpartnertopic
schema: 2.0.0
---
@@ -42,7 +42,7 @@ Enable-AzEventGridPartnerTopic -ResourceGroup MyResourceGroupName -Name Partner
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -57,7 +57,7 @@ Accept wildcard characters: False
PartnerTopic object.
```yaml
-Type: PSPartnerTopic
+Type: Microsoft.Azure.Commands.EventGrid.Models.PSPartnerTopic
Parameter Sets: PartnerTopicInputObjectParameterSet
Aliases:
@@ -72,7 +72,7 @@ Accept wildcard characters: False
Event Grid partner topic name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases: PartnerTopicName
@@ -87,7 +87,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases: ResourceGroup
@@ -102,7 +102,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -118,7 +118,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridChannel.md b/src/EventGrid/EventGrid/help/Get-AzEventGridChannel.md
index 3556b407bb45..881ada52749f 100644
--- a/src/EventGrid/EventGrid/help/Get-AzEventGridChannel.md
+++ b/src/EventGrid/EventGrid/help/Get-AzEventGridChannel.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/get-azeventgridchannel
schema: 2.0.0
---
@@ -58,7 +58,7 @@ Lists the details of Event Grid channels in partner namespace \`PartnerNameSpace
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -73,7 +73,7 @@ Accept wildcard characters: False
The name of the Event Grid channel.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ChannelNameParameterSet
Aliases: ChannelName
@@ -89,7 +89,7 @@ The link for the next page of resources to be obtained.
This value is obtained with the first Get-AzEventGrid cmdlet call when more resources are still available to be queried.
```yaml
-Type: String
+Type: System.String
Parameter Sets: NextLinkParameterSet
Aliases:
@@ -105,7 +105,7 @@ The OData query used for filtering the list results.
Filtering is currently allowed on the Name property only.The supported operations include: CONTAINS, eq (for equal), ne (for not equal), AND, OR and NOT.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ChannelListByPartnerNamespaceParameterSet
Aliases:
@@ -120,7 +120,7 @@ Accept wildcard characters: False
Event Grid partner namespace name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ChannelListByPartnerNamespaceParameterSet, ChannelNameParameterSet
Aliases:
@@ -135,7 +135,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ChannelListByPartnerNamespaceParameterSet, ChannelNameParameterSet
Aliases: ResourceGroup
@@ -153,7 +153,7 @@ If top value is specified and more results are still available, the result will
If the Top value is not specified, the full list of resources will be returned at once.
```yaml
-Type: Int32
+Type: System.Nullable`1[System.Int32]
Parameter Sets: ChannelListByPartnerNamespaceParameterSet
Aliases:
diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridFullUrlForPartnerTopicEventSubscription.md b/src/EventGrid/EventGrid/help/Get-AzEventGridFullUrlForPartnerTopicEventSubscription.md
index 776450af0ab3..26859c0f74cf 100644
--- a/src/EventGrid/EventGrid/help/Get-AzEventGridFullUrlForPartnerTopicEventSubscription.md
+++ b/src/EventGrid/EventGrid/help/Get-AzEventGridFullUrlForPartnerTopicEventSubscription.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/get-azeventgridfullurlforpartnertopiceventsubscription
schema: 2.0.0
---
@@ -36,14 +36,13 @@ Get-AzEventGridFullUrlForPartnerTopicEventSubscription -ResourceGroupName MyReso
Gets the full endpoint URL for event subscription \`EventSubscription1\` created for partner topic \`Topic1\` in resource group \`MyResourceGroupName\`.
-
## PARAMETERS
### -DefaultProfile
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -58,7 +57,7 @@ Accept wildcard characters: False
EventGrid event subscription name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet
Aliases: EventSubscriptionName
@@ -73,7 +72,7 @@ Accept wildcard characters: False
Event Grid partner topic name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -88,7 +87,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet
Aliases: ResourceGroup
@@ -103,7 +102,7 @@ Accept wildcard characters: False
Resource Identifier representing the Event Grid Event Subscription.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridFullUrlForSystemTopicEventSubscription.md b/src/EventGrid/EventGrid/help/Get-AzEventGridFullUrlForSystemTopicEventSubscription.md
index bdf1eda22f26..c2dd7f506956 100644
--- a/src/EventGrid/EventGrid/help/Get-AzEventGridFullUrlForSystemTopicEventSubscription.md
+++ b/src/EventGrid/EventGrid/help/Get-AzEventGridFullUrlForSystemTopicEventSubscription.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/get-azeventgridfullurlforsystemtopiceventsubscription
schema: 2.0.0
---
@@ -112,4 +112,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## NOTES
-## RELATED LINKS
\ No newline at end of file
+## RELATED LINKS
+
+## RELATED LINKS
diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerConfiguration.md b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerConfiguration.md
index ccd5dd068808..42014502b30b 100644
--- a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerConfiguration.md
+++ b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerConfiguration.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/get-azeventgridpartnerconfiguration
schema: 2.0.0
---
@@ -51,7 +51,7 @@ Lists the details of the first five partner configurations in the current Azure
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -67,7 +67,7 @@ The link for the next page of resources to be obtained.
This value is obtained with the first Get-AzEventGrid cmdlet call when more resources are still available to be queried.
```yaml
-Type: String
+Type: System.String
Parameter Sets: NextLinkParameterSet
Aliases:
@@ -83,7 +83,7 @@ The OData query used for filtering the list results.
Filtering is currently allowed on the Name property only.The supported operations include: CONTAINS, eq (for equal), ne (for not equal), AND, OR and NOT.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceGroupNameParameterSet
Aliases:
@@ -98,7 +98,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceGroupNameParameterSet
Aliases:
@@ -116,7 +116,7 @@ If top value is specified and more results are still available, the result will
If the Top value is not specified, the full list of resources will be returned at once.
```yaml
-Type: Int32
+Type: System.Nullable`1[System.Int32]
Parameter Sets: ResourceGroupNameParameterSet
Aliases:
diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerNamespace.md b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerNamespace.md
index ed2215f78830..5668143a0d8d 100644
--- a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerNamespace.md
+++ b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerNamespace.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/get-azeventgridpartnernamespace
schema: 2.0.0
---
@@ -41,6 +41,7 @@ The Get-AzEventGridPartnerNamespace cmdlet gets either the details of a specifie
If the partner namespace name is provided, the details of a single Event Grid partner namespace is returned.
If the partner namespace name is not provided but the resource group name is provided, a list of partner namespaces at the resource group scope is returned.
If neither the partner namespace name or the resource group name are provided, a list of partner namespaces at the current Azure subscription scope is returned.
+
## EXAMPLES
### Example 1
@@ -56,7 +57,7 @@ Gets the details of Event Grid partner namespace \`PartnerNamespace1\` in resour
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -71,7 +72,7 @@ Accept wildcard characters: False
Event Grid partner namespace name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerNamespaceNameParameterSet
Aliases: PartnerNamespaceName
@@ -87,7 +88,7 @@ The link for the next page of resources to be obtained.
This value is obtained with the first Get-AzEventGrid cmdlet call when more resources are still available to be queried.
```yaml
-Type: String
+Type: System.String
Parameter Sets: NextLinkParameterSet
Aliases:
@@ -103,7 +104,7 @@ The OData query used for filtering the list results.
Filtering is currently allowed on the Name property only.The supported operations include: CONTAINS, eq (for equal), ne (for not equal), AND, OR and NOT.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerNamespaceListBySubscriptionParameterSet, ResourceGroupNameParameterSet
Aliases:
@@ -118,7 +119,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceGroupNameParameterSet, PartnerNamespaceNameParameterSet
Aliases: ResourceGroup
@@ -136,7 +137,7 @@ If top value is specified and more results are still available, the result will
If the Top value is not specified, the full list of resources will be returned at once.
```yaml
-Type: Int32
+Type: System.Nullable`1[System.Int32]
Parameter Sets: PartnerNamespaceListBySubscriptionParameterSet, ResourceGroupNameParameterSet
Aliases:
diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerNamespaceKey.md b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerNamespaceKey.md
index c3abdd3bd3df..ec4dca16e2b0 100644
--- a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerNamespaceKey.md
+++ b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerNamespaceKey.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/get-azeventgridpartnernamespacekey
schema: 2.0.0
---
@@ -26,6 +26,7 @@ Get-AzEventGridPartnerNamespaceKey -InputObject [-DefaultPr
## DESCRIPTION
The Get-AzEventGridPartnerNamespaceKey cmdlet gets the details of an Event Grid partner namespace key.
+
## EXAMPLES
### Example 1
@@ -41,7 +42,7 @@ Gets the details of the keys for Event Grid partner namespace \`PartnerNamespace
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -56,7 +57,7 @@ Accept wildcard characters: False
PartnerNamespace object
```yaml
-Type: PSPartnerNamespace
+Type: Microsoft.Azure.Commands.EventGrid.Models.PSPartnerNamespace
Parameter Sets: PartnerNamespaceInputObjectParameterSet
Aliases:
@@ -71,7 +72,7 @@ Accept wildcard characters: False
Event Grid partner namespace name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerNamespaceNameParameterSet
Aliases:
@@ -86,7 +87,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerNamespaceNameParameterSet
Aliases:
diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerRegistration.md b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerRegistration.md
index 99a6aac57489..ad2eb7a78c92 100644
--- a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerRegistration.md
+++ b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerRegistration.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/get-azeventgridpartnerregistration
schema: 2.0.0
---
@@ -51,7 +51,7 @@ Gets the details of Event Grid partner registration \`PartnerRegistration1\` in
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -66,7 +66,7 @@ Accept wildcard characters: False
Event Grid partner registration name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerRegistrationNameParameterSet
Aliases: PartnerRegistrationName
@@ -82,7 +82,7 @@ The link for the next page of resources to be obtained.
This value is obtained with the first Get-AzEventGrid cmdlet call when more resources are still available to be queried.
```yaml
-Type: String
+Type: System.String
Parameter Sets: NextLinkParameterSet
Aliases:
@@ -98,7 +98,7 @@ The OData query used for filtering the list results.
Filtering is currently allowed on the Name property only.The supported operations include: CONTAINS, eq (for equal), ne (for not equal), AND, OR and NOT.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceGroupNameParameterSet
Aliases:
@@ -113,7 +113,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceGroupNameParameterSet
Aliases: ResourceGroup
@@ -125,7 +125,7 @@ Accept wildcard characters: False
```
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerRegistrationNameParameterSet
Aliases: ResourceGroup
@@ -143,7 +143,7 @@ If top value is specified and more results are still available, the result will
If the Top value is not specified, the full list of resources will be returned at once.
```yaml
-Type: Int32
+Type: System.Nullable`1[System.Int32]
Parameter Sets: ResourceGroupNameParameterSet
Aliases:
diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopic.md b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopic.md
index 457b10b08c5e..086b9490c0b9 100644
--- a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopic.md
+++ b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopic.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/get-azeventgridpartnertopic
schema: 2.0.0
---
@@ -50,7 +50,7 @@ Gets the details of Event Grid partner topic \`PartnerTopic1\` in resource group
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -65,7 +65,7 @@ Accept wildcard characters: False
Event Grid partner topic name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases: PartnerTopicName
@@ -81,7 +81,7 @@ The link for the next page of resources to be obtained.
This value is obtained with the first Get-AzEventGrid cmdlet call when more resources are still available to be queried.
```yaml
-Type: String
+Type: System.String
Parameter Sets: NextLinkParameterSet
Aliases:
@@ -97,7 +97,7 @@ The OData query used for filtering the list results.
Filtering is currently allowed on the Name property only.The supported operations include: CONTAINS, eq (for equal), ne (for not equal), AND, OR and NOT.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceGroupNameParameterSet
Aliases:
@@ -112,7 +112,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceGroupNameParameterSet
Aliases: ResourceGroup
@@ -124,7 +124,7 @@ Accept wildcard characters: False
```
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases: ResourceGroup
@@ -142,7 +142,7 @@ If top value is specified and more results are still available, the result will
If the Top value is not specified, the full list of resources will be returned at once.
```yaml
-Type: Int32
+Type: System.Nullable`1[System.Int32]
Parameter Sets: ResourceGroupNameParameterSet
Aliases:
diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopicEventSubscription.md b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopicEventSubscription.md
index 0a8834cee15a..20545b3ab983 100644
--- a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopicEventSubscription.md
+++ b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopicEventSubscription.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/get-azeventgridpartnertopiceventsubscription
schema: 2.0.0
---
@@ -73,7 +73,7 @@ List the first 10 event subscriptions (if any) created for partner topic \`Topic
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -88,7 +88,7 @@ Accept wildcard characters: False
If specified, include the full endpoint URL of the event subscription destination in the response.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -103,7 +103,7 @@ Accept wildcard characters: False
EventGrid event subscription name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet
Aliases: EventSubscriptionName
@@ -119,7 +119,7 @@ The link for the next page of resources to be obtained.
This value is obtained with the first Get-AzEventGrid cmdlet call when more resources are still available to be queried.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases:
@@ -135,7 +135,7 @@ The OData query used for filtering the list results.
Filtering is currently allowed on the Name property only.The supported operations include: CONTAINS, eq (for equal), ne (for not equal), AND, OR and NOT.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases:
@@ -150,7 +150,7 @@ Accept wildcard characters: False
Event Grid partner topic name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet, PartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -165,7 +165,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet, PartnerTopicEventSubscriptionParameterSet
Aliases: ResourceGroup
@@ -180,7 +180,7 @@ Accept wildcard characters: False
Resource Identifier representing the Event Grid Event Subscription.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -198,7 +198,7 @@ If top value is specified and more results are still available, the result will
If the Top value is not specified, the full list of resources will be returned at once.
```yaml
-Type: Int32
+Type: System.Nullable`1[System.Int32]
Parameter Sets: PartnerTopicNameParameterSet
Aliases:
diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute.md b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute.md
index 20079e572395..8e89f0279acb 100644
--- a/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute.md
+++ b/src/EventGrid/EventGrid/help/Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/get-azeventgridpartnertopiceventsubscriptiondeliveryattribute
schema: 2.0.0
---
@@ -42,14 +42,13 @@ Get-AzEventGridPartnerTopicEventSubscriptionDeliveryAttribute -ResourceGroupName
Gets the list of delivery attributest for event subscription \`EventSubscription1\` created for partner topic \`Topic1\` in resource group \`MyResourceGroupName\`.
-
## PARAMETERS
### -DefaultProfile
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -64,7 +63,7 @@ Accept wildcard characters: False
EventGrid event subscription name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet
Aliases: EventSubscriptionName
@@ -79,7 +78,7 @@ Accept wildcard characters: False
Event Grid partner topic name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -94,7 +93,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet
Aliases: ResourceGroup
@@ -109,7 +108,7 @@ Accept wildcard characters: False
Resource Identifier representing the Event Grid Event Subscription.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridSystemTopic.md b/src/EventGrid/EventGrid/help/Get-AzEventGridSystemTopic.md
index 25e0a02dcb70..31998438c0b8 100644
--- a/src/EventGrid/EventGrid/help/Get-AzEventGridSystemTopic.md
+++ b/src/EventGrid/EventGrid/help/Get-AzEventGridSystemTopic.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/get-azeventgridsystemtopic
schema: 2.0.0
---
diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridSystemTopicEventSubscription.md b/src/EventGrid/EventGrid/help/Get-AzEventGridSystemTopicEventSubscription.md
index 2207e1b1fa4a..e0677d50b969 100644
--- a/src/EventGrid/EventGrid/help/Get-AzEventGridSystemTopicEventSubscription.md
+++ b/src/EventGrid/EventGrid/help/Get-AzEventGridSystemTopicEventSubscription.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/get-azeventgridsystemtopiceventsubscription
schema: 2.0.0
---
diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridSystemTopicEventSubscriptionDeliveryAttribute.md b/src/EventGrid/EventGrid/help/Get-AzEventGridSystemTopicEventSubscriptionDeliveryAttribute.md
index 953b0fb4a5e2..43c235606ffe 100644
--- a/src/EventGrid/EventGrid/help/Get-AzEventGridSystemTopicEventSubscriptionDeliveryAttribute.md
+++ b/src/EventGrid/EventGrid/help/Get-AzEventGridSystemTopicEventSubscriptionDeliveryAttribute.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/get-azeventgridsystemtopiceventsubscriptiondeliveryattribute
schema: 2.0.0
---
diff --git a/src/EventGrid/EventGrid/help/Get-AzEventGridVerifiedPartner.md b/src/EventGrid/EventGrid/help/Get-AzEventGridVerifiedPartner.md
index 7033ee923526..dc0f1c2a9c20 100644
--- a/src/EventGrid/EventGrid/help/Get-AzEventGridVerifiedPartner.md
+++ b/src/EventGrid/EventGrid/help/Get-AzEventGridVerifiedPartner.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/get-azeventgridverifiedpartner
schema: 2.0.0
---
@@ -42,7 +42,7 @@ Gets the details of verified partner \`VerifiedPartner1\`.
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -57,7 +57,7 @@ Accept wildcard characters: False
EventGrid Verified Partner Name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: VerifiedPartnerNameParameterSet
Aliases:
@@ -73,7 +73,7 @@ The link for the next page of resources to be obtained.
This value is obtained with the first Get-AzEventGrid cmdlet call when more resources are still available to be queried.
```yaml
-Type: String
+Type: System.String
Parameter Sets: NextLinkParameterSet
Aliases:
@@ -89,7 +89,7 @@ The OData query used for filtering the list results.
Filtering is currently allowed on the Name property only.The supported operations include: CONTAINS, eq (for equal), ne (for not equal), AND, OR and NOT.
```yaml
-Type: String
+Type: System.String
Parameter Sets: VerifiedPartnerNameParameterSet
Aliases:
@@ -107,7 +107,7 @@ If top value is specified and more results are still available, the result will
If the Top value is not specified, the full list of resources will be returned at once.
```yaml
-Type: Int32
+Type: System.Int32
Parameter Sets: VerifiedPartnerNameParameterSet
Aliases:
diff --git a/src/EventGrid/EventGrid/help/Grant-AzEventGridPartnerConfiguration.md b/src/EventGrid/EventGrid/help/Grant-AzEventGridPartnerConfiguration.md
index 3fec335b7649..e93a1f4e2063 100644
--- a/src/EventGrid/EventGrid/help/Grant-AzEventGridPartnerConfiguration.md
+++ b/src/EventGrid/EventGrid/help/Grant-AzEventGridPartnerConfiguration.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/grant-azeventgridpartnerconfiguration
schema: 2.0.0
---
@@ -49,7 +49,7 @@ If specified, the allowed values are between 1 to the value of defaultMaximumExp
If not specified, the default value will be the value of defaultMaximumExpirationTimeInDays specified in PartnerConfiguration or 7 if this value is not specified.
```yaml
-Type: DateTime
+Type: System.Nullable`1[System.DateTime]
Parameter Sets: (All)
Aliases:
@@ -64,7 +64,7 @@ Accept wildcard characters: False
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -79,7 +79,7 @@ Accept wildcard characters: False
PartnerConfiguration object.
```yaml
-Type: PSPartnerConfiguration
+Type: Microsoft.Azure.Commands.EventGrid.Models.PSPartnerConfiguration
Parameter Sets: PartnerConfigurationInputObjectParameterSet
Aliases:
@@ -94,7 +94,7 @@ Accept wildcard characters: False
Parter name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -109,7 +109,7 @@ Accept wildcard characters: False
Immutable id of the corresponding partner registration
```yaml
-Type: Guid
+Type: System.Nullable`1[System.Guid]
Parameter Sets: (All)
Aliases:
@@ -124,7 +124,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceGroupNameParameterSet
Aliases: ResourceGroup
@@ -139,7 +139,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -155,7 +155,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridChannel.md b/src/EventGrid/EventGrid/help/New-AzEventGridChannel.md
index 5193bde5a123..cc8e8232b18f 100644
--- a/src/EventGrid/EventGrid/help/New-AzEventGridChannel.md
+++ b/src/EventGrid/EventGrid/help/New-AzEventGridChannel.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/new-azeventgridchannel
schema: 2.0.0
---
@@ -40,7 +40,7 @@ The type of the event channel which represents the direction flow of events.
Possible values include: 'PartnerTopic'
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
Accepted values: PartnerTopic
@@ -56,7 +56,7 @@ Accept wildcard characters: False
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -72,7 +72,7 @@ The kind of event type used.
Possible values include: 'Inline'
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -88,7 +88,7 @@ Expiration time of the partner topic.
If this timer expires while the partner topic is still never activated, the partner topic and corresponding event channel are deleted.
```yaml
-Type: DateTime
+Type: System.Nullable`1[System.DateTime]
Parameter Sets: (All)
Aliases:
@@ -104,7 +104,7 @@ Hashtable representing information on inline events.
The inline event keys are of type string which represents the name of the event.The inline event values are Hashtables containing the optional keys description, displayName, documentationUrl, and dataSchemaUrl which define the information about the inline event.
```yaml
-Type: Hashtable
+Type: System.Collections.Hashtable
Parameter Sets: (All)
Aliases:
Accepted values: Inline
@@ -120,7 +120,7 @@ Accept wildcard characters: False
Context or helpful message that can be used during the approval process by the subscriber.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -135,7 +135,7 @@ Accept wildcard characters: False
The name of the Event Grid channel.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases: ChannelName
@@ -150,7 +150,7 @@ Accept wildcard characters: False
Event Grid partner namespace name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -165,7 +165,7 @@ Accept wildcard characters: False
Event Grid partner topic name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -180,7 +180,7 @@ Accept wildcard characters: False
Source information provided by the publisher to determine the scope or context from which the events are originating.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -195,7 +195,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases: ResourceGroup
@@ -210,7 +210,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -226,7 +226,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridDomain.md b/src/EventGrid/EventGrid/help/New-AzEventGridDomain.md
index c0a8c3bb150d..4e13ca7ad07f 100644
--- a/src/EventGrid/EventGrid/help/New-AzEventGridDomain.md
+++ b/src/EventGrid/EventGrid/help/New-AzEventGridDomain.md
@@ -166,6 +166,7 @@ Different identity types. Could be either of following 'SystemAssigned', 'UserA
Type: System.String
Parameter Sets: (All)
Aliases:
+Accepted values: SystemAssigned, UserAssigned, SystemAssigned, UserAssigned, None
Required: False
Position: Named
diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerConfiguration.md b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerConfiguration.md
index 2d2984c6f8cf..8a610d1fe0c4 100644
--- a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerConfiguration.md
+++ b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerConfiguration.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/new-azeventgridpartnerconfiguration
schema: 2.0.0
---
@@ -39,7 +39,7 @@ At least one key is required.
The partnerName is a String, partnerRegistrationImmutableId is a Guid, and authorizationExpirationTimeInUtc is a DateTime.
```yaml
-Type: Hashtable[]
+Type: System.Collections.Hashtable[]
Parameter Sets: (All)
Aliases:
@@ -54,7 +54,7 @@ Accept wildcard characters: False
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -71,7 +71,7 @@ If this parameter is not specified, the default is 7 days.
Otherwise, allowed values are between 1 and 365 days.
```yaml
-Type: Int32
+Type: System.Nullable`1[System.Int32]
Parameter Sets: (All)
Aliases:
@@ -86,7 +86,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases: ResourceGroup
@@ -101,7 +101,7 @@ Accept wildcard characters: False
Hashtable which represents resource Tags.
```yaml
-Type: Hashtable
+Type: System.Collections.Hashtable
Parameter Sets: (All)
Aliases:
@@ -116,7 +116,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -132,7 +132,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerNamespace.md b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerNamespace.md
index 7fe5a2f7a2da..5df4af8dfdaa 100644
--- a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerNamespace.md
+++ b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerNamespace.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/new-azeventgridpartnernamespace
schema: 2.0.0
---
@@ -38,7 +38,7 @@ Creates a new Event Grid partner namespace \`PartnerNamespace1\` in resource gro
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -53,7 +53,7 @@ Accept wildcard characters: False
Switch param to disable local auth.
```yaml
-Type: Boolean
+Type: System.Nullable`1[System.Boolean]
Parameter Sets: (All)
Aliases:
@@ -68,7 +68,7 @@ Accept wildcard characters: False
Endpoint for the partner namespace
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -85,7 +85,7 @@ Each rule specifies the IP Address in CIDR notation e.g., 10.0.0.0/8 along with
Possible Action values include Allow only
```yaml
-Type: PSInboundIpRule[]
+Type: Microsoft.Azure.Commands.EventGrid.Models.PSInboundIpRule[]
Parameter Sets: (All)
Aliases:
@@ -100,7 +100,7 @@ Accept wildcard characters: False
Location of the partner namespace.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -115,7 +115,7 @@ Accept wildcard characters: False
Event Grid partner namespace name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases: PartnerNamespaceName
@@ -131,7 +131,7 @@ Fully qualified ARM Id of the partner registration that should be associated wit
This takes the following format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations/{partnerRegistrationName}.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -148,7 +148,7 @@ If none is specified, source attribute routing will be used to match the partner
Possible values include: 'SourceEventAttribute', 'ChannelNameHeader'
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
Accepted values: SourceEventAttribute, ChannelNameHeader
@@ -164,7 +164,7 @@ Accept wildcard characters: False
List of PSPrivateEndointConnection representing information about the private endpoint connections.
```yaml
-Type: PSPrivateEndpointConnection[]
+Type: Microsoft.Azure.Commands.EventGrid.Models.PSPrivateEndpointConnection[]
Parameter Sets: (All)
Aliases:
@@ -182,7 +182,7 @@ You can further restrict to specific IPs by configuring InboundIpRule parameters
Allowed values are disabled and enabled.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -197,7 +197,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases: ResourceGroup
@@ -212,7 +212,7 @@ Accept wildcard characters: False
Hashtable which represents resource Tags.
```yaml
-Type: Hashtable
+Type: System.Collections.Hashtable
Parameter Sets: (All)
Aliases:
@@ -227,7 +227,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -243,7 +243,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerNamespaceKey.md b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerNamespaceKey.md
index f5e6aac2a564..21655171fd2f 100644
--- a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerNamespaceKey.md
+++ b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerNamespaceKey.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/new-azeventgridpartnernamespacekey
schema: 2.0.0
---
@@ -42,7 +42,7 @@ Regenerate the key corresponding to key \`key1\` of Event Grid partner namespace
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -57,7 +57,7 @@ Accept wildcard characters: False
PartnerNamespace object
```yaml
-Type: PSPartnerNamespace
+Type: Microsoft.Azure.Commands.EventGrid.Models.PSPartnerNamespace
Parameter Sets: PartnerNamespaceInputObjectParameterSet
Aliases:
@@ -73,7 +73,7 @@ The name of the shared access key for the partner namespace.
Either key1 or key2.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases: KeyName
Accepted values: key1, key2
@@ -89,7 +89,7 @@ Accept wildcard characters: False
Event Grid partner namespace name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerNamespaceNameParameterSet
Aliases:
@@ -104,7 +104,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerNamespaceNameParameterSet
Aliases: ResourceGroup
@@ -119,7 +119,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -135,7 +135,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerRegistration.md b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerRegistration.md
index aad6159aefbd..2cd18f78fc1c 100644
--- a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerRegistration.md
+++ b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerRegistration.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/new-azeventgridpartnerregistration
schema: 2.0.0
---
@@ -9,6 +9,7 @@ schema: 2.0.0
## SYNOPSIS
Creates a new Event Grid partner registration.
+
## SYNTAX
```
@@ -34,7 +35,7 @@ Creates a new Event Grid partner registration \`PartnerRegistration1\` in the re
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -49,7 +50,7 @@ Accept wildcard characters: False
Event Grid partner registration name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases: PartnerRegistrationName
@@ -64,7 +65,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases: ResourceGroup
@@ -79,7 +80,7 @@ Accept wildcard characters: False
Hashtable which represents resource Tags.
```yaml
-Type: Hashtable
+Type: System.Collections.Hashtable
Parameter Sets: (All)
Aliases:
@@ -94,7 +95,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -110,7 +111,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerTopic.md b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerTopic.md
index b457d0d8bfb0..1e0cf807b1a5 100644
--- a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerTopic.md
+++ b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerTopic.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/new-azeventgridpartnertopic
schema: 2.0.0
---
@@ -46,7 +46,7 @@ Creates a new Event Grid partner topic \`PartnerTopic\` in resource group \`MyRe
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -62,7 +62,7 @@ The kind of event type used.
Possible values include: 'Inline'
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases:
Accepted values: Inline
@@ -79,7 +79,7 @@ Expiration time of the partner topic.
If this timer expires while the partner topic is still never activated, the partner topic and corresponding event channel are deleted.
```yaml
-Type: DateTime
+Type: System.Nullable`1[System.DateTime]
Parameter Sets: PartnerTopicNameParameterSet
Aliases:
@@ -94,7 +94,7 @@ Accept wildcard characters: False
The list of user assigned identities
```yaml
-Type: String[]
+Type: System.String[]
Parameter Sets: PartnerTopicNameParameterSet
Aliases:
@@ -110,7 +110,7 @@ Different identity types.
Could be either of following 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned', 'None'
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases:
Accepted values: SystemAssigned, UserAssigned, SystemAssigned, UserAssigned, None
@@ -127,7 +127,7 @@ Hashtable representing information on inline events.
The inline event keys are of type string which represents the name of the event.The inline event values are Hashtables containing the optional keys description, displayName, documentationUrl, and dataSchemaUrl which define the information about the inline event.
```yaml
-Type: Hashtable
+Type: System.Collections.Hashtable
Parameter Sets: PartnerTopicNameParameterSet
Aliases:
Accepted values: Inline
@@ -143,7 +143,7 @@ Accept wildcard characters: False
The location of the topic.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases:
@@ -158,7 +158,7 @@ Accept wildcard characters: False
Context or helpful message that can be used during the approval process by the subscriber.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases:
@@ -173,7 +173,7 @@ Accept wildcard characters: False
EventGrid topic name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases: PartnerTopicName
@@ -188,7 +188,7 @@ Accept wildcard characters: False
Immutable id of the corresponding partner registration
```yaml
-Type: Guid
+Type: System.Nullable`1[System.Guid]
Parameter Sets: PartnerTopicNameParameterSet
Aliases:
@@ -203,7 +203,7 @@ Accept wildcard characters: False
Hashtable which represents resource Tags.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases:
@@ -218,7 +218,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases: ResourceGroup
@@ -233,7 +233,7 @@ Accept wildcard characters: False
Source for a system topic
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases:
@@ -248,7 +248,7 @@ Accept wildcard characters: False
Hashtable which represents resource Tags.
```yaml
-Type: Hashtable
+Type: System.Collections.Hashtable
Parameter Sets: PartnerTopicNameParameterSet
Aliases:
@@ -263,7 +263,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -279,7 +279,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerTopicEventSubscription.md b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerTopicEventSubscription.md
index 20d4872fa9f9..a06ccbbf0425 100644
--- a/src/EventGrid/EventGrid/help/New-AzEventGridPartnerTopicEventSubscription.md
+++ b/src/EventGrid/EventGrid/help/New-AzEventGridPartnerTopicEventSubscription.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/new-azeventgridpartnertopiceventsubscription
schema: 2.0.0
---
@@ -64,7 +64,7 @@ This can be a single value of the corresponding type or an array of values.
As an example of the advanced filter parameters: $AdvancedFilters=@($AdvFilter1, $AdvFilter2) where $AdvFilter1=@{operator="NumberIn"; key="Data.Key1"; Values=@(1,2)} and $AdvFilter2=@{operator="StringBringsWith"; key="Subject"; Values=@("SubjectPrefix1","SubjectPrefix2")}
```yaml
-Type: Hashtable[]
+Type: System.Collections.Hashtable[]
Parameter Sets: (All)
Aliases:
@@ -79,7 +79,7 @@ Accept wildcard characters: False
The presence of this parameter denotes that advanced filtering on arrays is enabled
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -94,7 +94,7 @@ Accept wildcard characters: False
The Azure Active Directory (AAD) Application Id or Uri to get the access token that will be included as the bearer token in delivery requests.Applicable only for webhook as a destination.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -109,7 +109,7 @@ Accept wildcard characters: False
The Azure Active Directory (AAD) Tenant Id to get the access token that will be included as the bearer token in delivery requests.Applicable only for webhook as a destination.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -126,7 +126,7 @@ Specify the Azure resource ID of a Storage blob container.
For example: /subscriptions/\[SubscriptionId\]/resourceGroups/\[ResourceGroupName\]/providers/Microsoft.Storage/storageAccounts/\[StorageAccountName\]/blobServices/default/containers/\[ContainerName\].
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -141,7 +141,7 @@ Accept wildcard characters: False
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -156,7 +156,7 @@ Accept wildcard characters: False
The delivery attribute mappings for this system topic event subscription
```yaml
-Type: String[]
+Type: System.String[]
Parameter Sets: (All)
Aliases:
@@ -173,7 +173,7 @@ The possible values are: eventgridschema, CustomInputSchema, or cloudeventv01sch
Default value is CustomInputSchema.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -191,7 +191,7 @@ For example, the resource ID for a hybrid connection takes the following form: /
It is expected that the destination endpoint to be created and available for use before executing any Event Grid cmdlets.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -208,7 +208,7 @@ This can be webhook, eventhub, storagequeue, hybridconnection, servicebusqueue,
Default value is webhook.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -224,7 +224,7 @@ The time in minutes for the event delivery.
This value must be between 1 and 1440
```yaml
-Type: Int32
+Type: System.Int32
Parameter Sets: (All)
Aliases:
@@ -239,7 +239,7 @@ Accept wildcard characters: False
Determines the expiration DateTime for the event subscription after which event subscription will retire.
```yaml
-Type: DateTime
+Type: System.DateTime
Parameter Sets: (All)
Aliases:
@@ -255,7 +255,7 @@ Filter that specifies a list of event types to include.
If not specified, all event types (for the custom topics and domains) or default event types (for other topic types) will be included.
```yaml
-Type: String[]
+Type: System.String[]
Parameter Sets: (All)
Aliases:
@@ -270,7 +270,7 @@ Accept wildcard characters: False
Labels for the event subscription.
```yaml
-Type: String[]
+Type: System.String[]
Parameter Sets: (All)
Aliases:
@@ -286,7 +286,7 @@ The maximum number of attempts to deliver the event.
This value must be between 1 and 30.
```yaml
-Type: Int32
+Type: System.Int32
Parameter Sets: (All)
Aliases:
@@ -303,7 +303,7 @@ This value must be between 1 and 5000.
This parameter is valid when Endpint Type is webhook only.
```yaml
-Type: Int32
+Type: System.Int32
Parameter Sets: (All)
Aliases:
@@ -318,7 +318,7 @@ Accept wildcard characters: False
EventGrid event subscription name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases: EventSubscriptionName
@@ -333,7 +333,7 @@ Accept wildcard characters: False
Event Grid partner topic name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -350,7 +350,7 @@ This value must be between 1 and 1024.
This parameter is valid when Endpint Type is webhook only.
```yaml
-Type: Int32
+Type: System.Int32
Parameter Sets: (All)
Aliases:
@@ -365,7 +365,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases: ResourceGroup
@@ -380,7 +380,7 @@ Accept wildcard characters: False
The time in milliseconds for time to live of a storage queue message
```yaml
-Type: Int64
+Type: System.Int64
Parameter Sets: (All)
Aliases:
@@ -396,7 +396,7 @@ Filter that specifies that only events matching the specified subject prefix wil
If not specified, events with all subject prefixes will be included.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -412,7 +412,7 @@ Filter that specifies that the subject field should be compared in a case sensit
If not specified, subject will be compared in a case insensitive manner.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -428,7 +428,7 @@ Filter that specifies that only events matching the specified subject suffix wil
If not specified, events with all subject suffixes will be included.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -443,7 +443,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -459,7 +459,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridSubscription.md b/src/EventGrid/EventGrid/help/New-AzEventGridSubscription.md
index ba9f49769f2e..3498e8dba00f 100644
--- a/src/EventGrid/EventGrid/help/New-AzEventGridSubscription.md
+++ b/src/EventGrid/EventGrid/help/New-AzEventGridSubscription.md
@@ -341,7 +341,7 @@ The schema to be used when delivering events to the destination. The possible va
Type: System.String
Parameter Sets: ResourceGroupNameParameterSet, ResourceIdEventSubscriptionParameterSet, CustomTopicEventSubscriptionParameterSet, DomainEventSubscriptionParameterSet, DomainTopicEventSubscriptionParameterSet
Aliases:
-Accepted values: EventGridSchema, CustomInputSchema, CloudEventSchemaV1_0, EventGridSchema, CustomInputSchema, CloudEventSchemaV1_0
+Accepted values: EventGridSchema, CustomInputSchema, CloudEventSchemaV1_0
Required: False
Position: Named
@@ -354,7 +354,7 @@ Accept wildcard characters: False
Type: System.String
Parameter Sets: EventSubscriptionCustomTopicInputObjectParameterSet, EventSubscriptionDomainInputObjectParameterSet, EventSubscriptionDomainTopicInputObjectParameterSet
Aliases:
-Accepted values: EventGridSchema, CustomInputSchema, CloudEventSchemaV1_0, EventGridSchema, CustomInputSchema, CloudEventSchemaV1_0
+Accepted values: EventGridSchema, CustomInputSchema, CloudEventSchemaV1_0
Required: False
Position: Named
@@ -460,7 +460,7 @@ This can be webhook, eventhub, storagequeue, hybridconnection or servicebusqueue
Type: System.String
Parameter Sets: ResourceGroupNameParameterSet, ResourceIdEventSubscriptionParameterSet, CustomTopicEventSubscriptionParameterSet, DomainEventSubscriptionParameterSet, DomainTopicEventSubscriptionParameterSet
Aliases:
-Accepted values: webhook, eventhub, storagequeue, hybridconnection, servicebusqueue, servicebustopic, azurefunction, webhook, eventhub, storagequeue, hybridconnection, servicebusqueue, servicebustopic, azurefunction
+Accepted values: webhook, eventhub, storagequeue, hybridconnection, servicebusqueue, servicebustopic, azurefunction
Required: False
Position: Named
@@ -473,7 +473,7 @@ Accept wildcard characters: False
Type: System.String
Parameter Sets: EventSubscriptionCustomTopicInputObjectParameterSet, EventSubscriptionDomainInputObjectParameterSet, EventSubscriptionDomainTopicInputObjectParameterSet
Aliases:
-Accepted values: webhook, eventhub, storagequeue, hybridconnection, servicebusqueue, servicebustopic, azurefunction, webhook, eventhub, storagequeue, hybridconnection, servicebusqueue, servicebustopic, azurefunction
+Accepted values: webhook, eventhub, storagequeue, hybridconnection, servicebusqueue, servicebustopic, azurefunction
Required: False
Position: Named
diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridSystemTopic.md b/src/EventGrid/EventGrid/help/New-AzEventGridSystemTopic.md
index 12687c00bb52..068d960b1f6e 100644
--- a/src/EventGrid/EventGrid/help/New-AzEventGridSystemTopic.md
+++ b/src/EventGrid/EventGrid/help/New-AzEventGridSystemTopic.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/new-azeventgridsystemtopic
schema: 2.0.0
---
diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridSystemTopicEventSubscription.md b/src/EventGrid/EventGrid/help/New-AzEventGridSystemTopicEventSubscription.md
index 3f2c320ef096..e96c085108fd 100644
--- a/src/EventGrid/EventGrid/help/New-AzEventGridSystemTopicEventSubscription.md
+++ b/src/EventGrid/EventGrid/help/New-AzEventGridSystemTopicEventSubscription.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/new-azeventgridsystemtopiceventsubscription
schema: 2.0.0
---
diff --git a/src/EventGrid/EventGrid/help/New-AzEventGridTopic.md b/src/EventGrid/EventGrid/help/New-AzEventGridTopic.md
index 91ca96c54fef..01bda0e77d58 100644
--- a/src/EventGrid/EventGrid/help/New-AzEventGridTopic.md
+++ b/src/EventGrid/EventGrid/help/New-AzEventGridTopic.md
@@ -94,6 +94,7 @@ Different identity types. Could be either of following 'SystemAssigned', 'UserA
Type: System.String
Parameter Sets: (All)
Aliases:
+Accepted values: SystemAssigned, UserAssigned, SystemAssigned, UserAssigned, None
Required: False
Position: Named
diff --git a/src/EventGrid/EventGrid/help/Remove-AzEventGridChannel.md b/src/EventGrid/EventGrid/help/Remove-AzEventGridChannel.md
index 4fbf8ef91cc4..2b9be8e8eb0a 100644
--- a/src/EventGrid/EventGrid/help/Remove-AzEventGridChannel.md
+++ b/src/EventGrid/EventGrid/help/Remove-AzEventGridChannel.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/remove-azeventgridchannel
schema: 2.0.0
---
@@ -42,7 +42,7 @@ Removes the Event Grid Channel \`Channel1\` in resource group \`MyResourceGroupN
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -58,7 +58,7 @@ Indicates that the cmdlet does not prompt you for confirmation.
By default, this cmdlet prompts you to confirm that you want to delete the resource
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -73,7 +73,7 @@ Accept wildcard characters: False
Channel object
```yaml
-Type: PSChannel
+Type: Microsoft.Azure.Commands.EventGrid.Models.PSChannel
Parameter Sets: ChannelInputObjectParameterSet
Aliases:
@@ -88,7 +88,7 @@ Accept wildcard characters: False
The name of the Event Grid channel.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ChannelNameParameterSet
Aliases: ChannelName
@@ -103,7 +103,7 @@ Accept wildcard characters: False
Event Grid partner namespace name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ChannelNameParameterSet
Aliases:
@@ -118,7 +118,7 @@ Accept wildcard characters: False
{{ Fill PassThru Description }}
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -133,7 +133,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ChannelNameParameterSet
Aliases: ResourceGroup
@@ -148,7 +148,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -164,7 +164,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerConfiguration.md b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerConfiguration.md
index f15db8cfda08..377620e5edbd 100644
--- a/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerConfiguration.md
+++ b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerConfiguration.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/remove-azeventgridpartnerconfiguration
schema: 2.0.0
---
@@ -42,7 +42,7 @@ Removes the Event Grid partner configuration in resource group \`MyResourceGroup
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -58,7 +58,7 @@ Indicates that the cmdlet does not prompt you for confirmation.
By default, this cmdlet prompts you to confirm that you want to delete the resource
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -73,7 +73,7 @@ Accept wildcard characters: False
PartnerConfiguration object.
```yaml
-Type: PSPartnerConfiguration
+Type: Microsoft.Azure.Commands.EventGrid.Models.PSPartnerConfiguration
Parameter Sets: PartnerConfigurationInputObjectParameterSet
Aliases:
@@ -88,7 +88,7 @@ Accept wildcard characters: False
{{ Fill PassThru Description }}
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -103,7 +103,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceGroupNameParameterSet
Aliases: ResourceGroup
@@ -118,7 +118,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -134,7 +134,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerNamespace.md b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerNamespace.md
index c454937a381a..13c910da200e 100644
--- a/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerNamespace.md
+++ b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerNamespace.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/remove-azeventgridpartnernamespace
schema: 2.0.0
---
@@ -42,7 +42,7 @@ Removes the Event Grid partner namespace \`PartnerNamespace1\` in resource group
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -58,7 +58,7 @@ Indicates that the cmdlet does not prompt you for confirmation.
By default, this cmdlet prompts you to confirm that you want to delete the resource
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -73,7 +73,7 @@ Accept wildcard characters: False
PartnerNamespace object
```yaml
-Type: PSPartnerNamespace
+Type: Microsoft.Azure.Commands.EventGrid.Models.PSPartnerNamespace
Parameter Sets: PartnerNamespaceInputObjectParameterSet
Aliases:
@@ -88,7 +88,7 @@ Accept wildcard characters: False
Event Grid partner namespace name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerNamespaceNameParameterSet
Aliases: PartnerNamespaceName
@@ -103,7 +103,7 @@ Accept wildcard characters: False
{{ Fill PassThru Description }}
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -118,7 +118,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerNamespaceNameParameterSet
Aliases: ResourceGroup
@@ -133,7 +133,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -149,7 +149,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerRegistration.md b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerRegistration.md
index dde00ac426bb..973117cac0bb 100644
--- a/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerRegistration.md
+++ b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerRegistration.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/remove-azeventgridpartnerregistration
schema: 2.0.0
---
@@ -42,7 +42,7 @@ Removes the Event Grid partner registration \`PartnerRegistration1\` in resource
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -58,7 +58,7 @@ Indicates that the cmdlet does not prompt you for confirmation.
By default, this cmdlet prompts you to confirm that you want to delete the resource
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -73,7 +73,7 @@ Accept wildcard characters: False
PartnerRegistration object
```yaml
-Type: PSPartnerRegistration
+Type: Microsoft.Azure.Commands.EventGrid.Models.PSPartnerRegistration
Parameter Sets: PartnerRegistrationInputObjectParameterSet
Aliases:
@@ -88,7 +88,7 @@ Accept wildcard characters: False
Event Grid partner registration name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerRegistrationNameParameterSet
Aliases: PartnerRegistrationName
@@ -103,7 +103,7 @@ Accept wildcard characters: False
{{ Fill PassThru Description }}
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -118,7 +118,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerRegistrationNameParameterSet
Aliases: ResourceGroup
@@ -133,7 +133,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -149,7 +149,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerTopic.md b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerTopic.md
index 2516d09c3379..b02daa8ec898 100644
--- a/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerTopic.md
+++ b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerTopic.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/remove-azeventgridpartnertopic
schema: 2.0.0
---
@@ -42,7 +42,7 @@ Removes the Event Grid Partner Topic \`PartnerTopic1\` in resource group \`MyRes
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -58,7 +58,7 @@ Indicates that the cmdlet does not prompt you for confirmation.
By default, this cmdlet prompts you to confirm that you want to delete the resource
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -73,7 +73,7 @@ Accept wildcard characters: False
PartnerTopic object.
```yaml
-Type: PSPartnerTopic
+Type: Microsoft.Azure.Commands.EventGrid.Models.PSPartnerTopic
Parameter Sets: PartnerTopicInputObjectParameterSet
Aliases:
@@ -88,7 +88,7 @@ Accept wildcard characters: False
Event Grid partner topic name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases: PartnerTopicName
@@ -103,7 +103,7 @@ Accept wildcard characters: False
{{ Fill PassThru Description }}
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -118,7 +118,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases: ResourceGroup
@@ -133,7 +133,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -149,7 +149,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerTopicEventSubscription.md b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerTopicEventSubscription.md
index 6c02d019c599..f59d277e7b99 100644
--- a/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerTopicEventSubscription.md
+++ b/src/EventGrid/EventGrid/help/Remove-AzEventGridPartnerTopicEventSubscription.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/remove-azeventgridpartnertopiceventsubscription
schema: 2.0.0
---
@@ -49,7 +49,7 @@ Removes the event subscription \`EventSubscription1\` to an Azure Event Grid par
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -65,7 +65,7 @@ Indicates that the cmdlet does not prompt you for confirmation.
By default, this cmdlet prompts you to confirm that you want to delete the resource
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -80,7 +80,7 @@ Accept wildcard characters: False
EventGrid event subscription name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet
Aliases: EventSubscriptionName
@@ -95,7 +95,7 @@ Accept wildcard characters: False
Event Grid partner topic name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -110,7 +110,7 @@ Accept wildcard characters: False
{{ Fill PassThru Description }}
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -125,7 +125,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet
Aliases: ResourceGroup
@@ -140,7 +140,7 @@ Accept wildcard characters: False
Resource Identifier representing the Event Grid Event Subscription.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -155,7 +155,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -171,7 +171,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/Remove-AzEventGridSystemTopic.md b/src/EventGrid/EventGrid/help/Remove-AzEventGridSystemTopic.md
index 2e8d46decb1f..8d8f9d713c11 100644
--- a/src/EventGrid/EventGrid/help/Remove-AzEventGridSystemTopic.md
+++ b/src/EventGrid/EventGrid/help/Remove-AzEventGridSystemTopic.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/remove-azeventgridsystemtopic
schema: 2.0.0
---
diff --git a/src/EventGrid/EventGrid/help/Remove-AzEventGridSystemTopicEventSubscription.md b/src/EventGrid/EventGrid/help/Remove-AzEventGridSystemTopicEventSubscription.md
index 279ec928b496..30e4d6f7f018 100644
--- a/src/EventGrid/EventGrid/help/Remove-AzEventGridSystemTopicEventSubscription.md
+++ b/src/EventGrid/EventGrid/help/Remove-AzEventGridSystemTopicEventSubscription.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/remove-azeventgridsystemtopiceventsubscription
schema: 2.0.0
---
@@ -43,7 +43,7 @@ Removes the event subscription \`EventSubscription1\` to an Azure Event Grid sys
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -58,7 +58,7 @@ Accept wildcard characters: False
EventGrid event subscription name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: SystemTopicEventSuscriptionParameterSet
Aliases:
@@ -74,7 +74,7 @@ Indicates that the cmdlet does not prompt you for confirmation.
By default, this cmdlet prompts you to confirm that you want to delete the resource
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -89,7 +89,7 @@ Accept wildcard characters: False
Returns the status of the Remove operation. By default, this cmdlet does not generate any output.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
@@ -104,7 +104,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: SystemTopicEventSuscriptionParameterSet
Aliases:
@@ -119,7 +119,7 @@ Accept wildcard characters: False
EventGrid topic name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: SystemTopicEventSuscriptionParameterSet
Aliases:
@@ -134,7 +134,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -150,7 +150,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/Revoke-AzEventGridPartnerConfiguration.md b/src/EventGrid/EventGrid/help/Revoke-AzEventGridPartnerConfiguration.md
index 5ba676d43c6c..042cf5f953ae 100644
--- a/src/EventGrid/EventGrid/help/Revoke-AzEventGridPartnerConfiguration.md
+++ b/src/EventGrid/EventGrid/help/Revoke-AzEventGridPartnerConfiguration.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/revoke-azeventgridpartnerconfiguration
schema: 2.0.0
---
@@ -47,7 +47,7 @@ If specified, the allowed values are between 1 to the value of defaultMaximumExp
If not specified, the default value will be the value of defaultMaximumExpirationTimeInDays specified in PartnerConfiguration or 7 if this value is not specified.
```yaml
-Type: DateTime
+Type: System.Nullable`1[System.DateTime]
Parameter Sets: (All)
Aliases:
@@ -62,7 +62,7 @@ Accept wildcard characters: False
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -77,7 +77,7 @@ Accept wildcard characters: False
PartnerConfiguration object.
```yaml
-Type: PSPartnerConfiguration
+Type: Microsoft.Azure.Commands.EventGrid.Models.PSPartnerConfiguration
Parameter Sets: PartnerConfigurationInputObjectParameterSet
Aliases:
@@ -92,7 +92,7 @@ Accept wildcard characters: False
Parter name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -107,7 +107,7 @@ Accept wildcard characters: False
Immutable id of the corresponding partner registration
```yaml
-Type: Guid
+Type: System.Nullable`1[System.Guid]
Parameter Sets: (All)
Aliases:
@@ -122,7 +122,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceGroupNameParameterSet
Aliases: ResourceGroup
@@ -137,7 +137,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -153,7 +153,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/Set-AzEventGridTopic.md b/src/EventGrid/EventGrid/help/Set-AzEventGridTopic.md
index f6e5eb06d1b3..c5793993b0bf 100644
--- a/src/EventGrid/EventGrid/help/Set-AzEventGridTopic.md
+++ b/src/EventGrid/EventGrid/help/Set-AzEventGridTopic.md
@@ -84,6 +84,7 @@ Different identity types. Could be either of following 'SystemAssigned', 'UserA
Type: System.String
Parameter Sets: (All)
Aliases:
+Accepted values: SystemAssigned, UserAssigned, SystemAssigned, UserAssigned, None
Required: False
Position: Named
@@ -156,7 +157,7 @@ This determines if traffic is allowed over public network. By default it is enab
Type: System.String
Parameter Sets: TopicNameParameterSet, ResourceIdEventSubscriptionParameterSet
Aliases:
-Accepted values: enabled, disabled, enabled, disabled
+Accepted values: enabled, disabled
Required: True
Position: 4
@@ -169,7 +170,7 @@ Accept wildcard characters: False
Type: System.String
Parameter Sets: TopicInputObjectParameterSet
Aliases:
-Accepted values: enabled, disabled, enabled, disabled
+Accepted values: enabled, disabled
Required: False
Position: 4
diff --git a/src/EventGrid/EventGrid/help/Update-AzEventGridChannel.md b/src/EventGrid/EventGrid/help/Update-AzEventGridChannel.md
index d367d0e4d64b..3be6f0d6ba2f 100644
--- a/src/EventGrid/EventGrid/help/Update-AzEventGridChannel.md
+++ b/src/EventGrid/EventGrid/help/Update-AzEventGridChannel.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/update-azeventgridchannel
schema: 2.0.0
---
@@ -44,7 +44,7 @@ Updates the Event Grid channel so partner topics will expire 8 days from the cur
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -60,7 +60,7 @@ The kind of event type used.
Possible values include: 'Inline'
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
@@ -76,7 +76,7 @@ Expiration time of the partner topic.
If this timer expires while the partner topic is still never activated, the partner topic and corresponding event channel are deleted.
```yaml
-Type: DateTime
+Type: System.Nullable`1[System.DateTime]
Parameter Sets: (All)
Aliases:
@@ -92,7 +92,7 @@ Hashtable representing information on inline events.
The inline event keys are of type string which represents the name of the event.The inline event values are Hashtables containing the optional keys description, displayName, documentationUrl, and dataSchemaUrl which define the information about the inline event.
```yaml
-Type: Hashtable
+Type: System.Collections.Hashtable
Parameter Sets: (All)
Aliases:
Accepted values: Inline
@@ -108,7 +108,7 @@ Accept wildcard characters: False
Channel object
```yaml
-Type: PSChannel
+Type: Microsoft.Azure.Commands.EventGrid.Models.PSChannel
Parameter Sets: ChannelInputObjectParameterSet
Aliases:
@@ -123,7 +123,7 @@ Accept wildcard characters: False
The name of the Event Grid channel.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ChannelNameParameterSet
Aliases: ChannelName
@@ -138,7 +138,7 @@ Accept wildcard characters: False
Event Grid partner namespace name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ChannelNameParameterSet
Aliases:
@@ -153,7 +153,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ChannelNameParameterSet
Aliases: ResourceGroup
@@ -168,7 +168,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -184,7 +184,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerConfiguration.md b/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerConfiguration.md
index 2d470b705c91..4cca6b856d4a 100644
--- a/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerConfiguration.md
+++ b/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerConfiguration.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/update-azeventgridpartnerconfiguration
schema: 2.0.0
---
@@ -44,7 +44,7 @@ Updates the maximum expiration time in days property of the partner configuratio
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -59,7 +59,7 @@ Accept wildcard characters: False
PartnerConfiguration object.
```yaml
-Type: PSPartnerConfiguration
+Type: Microsoft.Azure.Commands.EventGrid.Models.PSPartnerConfiguration
Parameter Sets: PartnerConfigurationInputObjectParameterSet
Aliases:
@@ -76,7 +76,7 @@ If this parameter is not specified, the default is 7 days.
Otherwise, allowed values are between 1 and 365 days.
```yaml
-Type: Int32
+Type: System.Nullable`1[System.Int32]
Parameter Sets: (All)
Aliases:
@@ -91,7 +91,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceGroupNameParameterSet
Aliases: ResourceGroup
@@ -106,7 +106,7 @@ Accept wildcard characters: False
Hashtable which represents resource Tags.
```yaml
-Type: Hashtable
+Type: System.Collections.Hashtable
Parameter Sets: (All)
Aliases:
@@ -121,7 +121,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -137,7 +137,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerTopic.md b/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerTopic.md
index 9449b6e2f80c..865f0cf056ad 100644
--- a/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerTopic.md
+++ b/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerTopic.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/update-azeventgridpartnertopic
schema: 2.0.0
---
@@ -54,14 +54,13 @@ Update-AzEventGridPartnerTopic -ResourceGroup MyResourceGroupName -Name Topic1 -
Sets the properties of the Event Grid Partner topic \`Topic1\` in resource group \`MyResourceGroupName\` to change identity type to \`UserAssigned\` with given identity ids.
-
## PARAMETERS
### -DefaultProfile
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -76,7 +75,7 @@ Accept wildcard characters: False
The list of user assigned identities
```yaml
-Type: String[]
+Type: System.String[]
Parameter Sets: (All)
Aliases:
@@ -92,7 +91,7 @@ Different identity types.
Could be either of following 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned', 'None'
```yaml
-Type: String
+Type: System.String
Parameter Sets: (All)
Aliases:
Accepted values: SystemAssigned, UserAssigned, SystemAssigned, UserAssigned, None
@@ -108,7 +107,7 @@ Accept wildcard characters: False
PartnerTopic object.
```yaml
-Type: PSPartnerTopic
+Type: Microsoft.Azure.Commands.EventGrid.Models.PSPartnerTopic
Parameter Sets: PartnerTopicInputObjectParameterSet
Aliases:
@@ -123,7 +122,7 @@ Accept wildcard characters: False
Event Grid partner topic name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases: PartnerTopicName
@@ -138,7 +137,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicNameParameterSet
Aliases: ResourceGroup
@@ -153,7 +152,7 @@ Accept wildcard characters: False
Hashtable which represents resource Tags.
```yaml
-Type: Hashtable
+Type: System.Collections.Hashtable
Parameter Sets: (All)
Aliases:
@@ -168,7 +167,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -184,7 +183,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerTopicEventSubscription.md b/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerTopicEventSubscription.md
index fbc5472fdab5..e975c924bc47 100644
--- a/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerTopicEventSubscription.md
+++ b/src/EventGrid/EventGrid/help/Update-AzEventGridPartnerTopicEventSubscription.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/update-azeventgridpartnertopiceventsubscription
schema: 2.0.0
---
@@ -76,7 +76,7 @@ This can be a single value of the corresponding type or an array of values.
As an example of the advanced filter parameters: $AdvancedFilters=@($AdvFilter1, $AdvFilter2) where $AdvFilter1=@{operator="NumberIn"; key="Data.Key1"; Values=@(1,2)} and $AdvFilter2=@{operator="StringBringsWith"; key="Subject"; Values=@("SubjectPrefix1","SubjectPrefix2")}
```yaml
-Type: Hashtable[]
+Type: System.Collections.Hashtable[]
Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -91,7 +91,7 @@ Accept wildcard characters: False
The presence of this parameter denotes that advanced filtering on arrays is enabled
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -108,7 +108,7 @@ Specify the Azure resource ID of a Storage blob container.
For example: /subscriptions/\[SubscriptionId\]/resourceGroups/\[ResourceGroupName\]/providers/Microsoft.Storage/storageAccounts/\[StorageAccountName\]/blobServices/default/containers/\[ContainerName\].
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -123,7 +123,7 @@ Accept wildcard characters: False
The credentials, account, tenant, and subscription used for communication with Azure.
```yaml
-Type: IAzureContextContainer
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
Parameter Sets: (All)
Aliases: AzContext, AzureRmContext, AzureCredential
@@ -138,7 +138,7 @@ Accept wildcard characters: False
The delivery attribute mappings for this system topic event subscription
```yaml
-Type: String[]
+Type: System.String[]
Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -156,7 +156,7 @@ For example, the resource ID for a hybrid connection takes the following form: /
It is expected that the destination endpoint to be created and available for use before executing any Event Grid cmdlets.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -173,7 +173,7 @@ This can be webhook, eventhub, storagequeue, hybridconnection, servicebusqueue,
Default value is webhook.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -189,7 +189,7 @@ Filter that specifies a list of event types to include.
If not specified, all event types (for the custom topics and domains) or default event types (for other topic types) will be included.
```yaml
-Type: String[]
+Type: System.String[]
Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -204,7 +204,7 @@ Accept wildcard characters: False
Labels for the event subscription.
```yaml
-Type: String[]
+Type: System.String[]
Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -219,7 +219,7 @@ Accept wildcard characters: False
EventGrid event subscription name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet
Aliases: EventSubscriptionName
@@ -234,7 +234,7 @@ Accept wildcard characters: False
Event Grid partner topic name.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -249,7 +249,7 @@ Accept wildcard characters: False
The name of the resource group.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet
Aliases: ResourceGroup
@@ -264,7 +264,7 @@ Accept wildcard characters: False
Resource Identifier representing the Event Grid Event Subscription.
```yaml
-Type: String
+Type: System.String
Parameter Sets: ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -279,7 +279,7 @@ Accept wildcard characters: False
The time in milliseconds for time to live of a storage queue message
```yaml
-Type: Int64
+Type: System.Int64
Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -295,7 +295,7 @@ Filter that specifies that only events matching the specified subject prefix wil
If not specified, events with all subject prefixes will be included.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -311,7 +311,7 @@ Filter that specifies that the subject field should be compared in a case sensit
If not specified, subject will be compared in a case insensitive manner.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -327,7 +327,7 @@ Filter that specifies that only events matching the specified subject suffix wil
If not specified, events with all subject suffixes will be included.
```yaml
-Type: String
+Type: System.String
Parameter Sets: PartnerTopicEventSubscriptionParameterSet, ResourceIdPartnerTopicEventSubscriptionParameterSet
Aliases:
@@ -342,7 +342,7 @@ Accept wildcard characters: False
Prompts you for confirmation before running the cmdlet.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: cf
@@ -358,7 +358,7 @@ Shows what would happen if the cmdlet runs.
The cmdlet is not run.
```yaml
-Type: SwitchParameter
+Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases: wi
diff --git a/src/EventGrid/EventGrid/help/Update-AzEventGridSystemTopic.md b/src/EventGrid/EventGrid/help/Update-AzEventGridSystemTopic.md
index 4e21476c0243..e75d940c6cbf 100644
--- a/src/EventGrid/EventGrid/help/Update-AzEventGridSystemTopic.md
+++ b/src/EventGrid/EventGrid/help/Update-AzEventGridSystemTopic.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/update-azeventgridsystemtopic
schema: 2.0.0
---
diff --git a/src/EventGrid/EventGrid/help/Update-AzEventGridSystemTopicEventSubscription.md b/src/EventGrid/EventGrid/help/Update-AzEventGridSystemTopicEventSubscription.md
index a2143e25ace1..dc518b6ae996 100644
--- a/src/EventGrid/EventGrid/help/Update-AzEventGridSystemTopicEventSubscription.md
+++ b/src/EventGrid/EventGrid/help/Update-AzEventGridSystemTopicEventSubscription.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventGrid.dll-Help.xml
Module Name: Az.EventGrid
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventgrid/update-azeventgridsystemtopiceventsubscription
schema: 2.0.0
---
diff --git a/src/EventHub/EventHub/help/New-AzEventHubEncryptionConfig.md b/src/EventHub/EventHub/help/New-AzEventHubEncryptionConfig.md
index 657a1e06ef64..0efefae8c95a 100644
--- a/src/EventHub/EventHub/help/New-AzEventHubEncryptionConfig.md
+++ b/src/EventHub/EventHub/help/New-AzEventHubEncryptionConfig.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.EventHub.dll-Help.xml
Module Name: Az.EventHub
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.eventhub/new-azeventhubencryptionconfig
schema: 2.0.0
---
diff --git a/src/FrontDoor/FrontDoor/ChangeLog.md b/src/FrontDoor/FrontDoor/ChangeLog.md
index 4d2ede0d7f84..df41e5adb02b 100644
--- a/src/FrontDoor/FrontDoor/ChangeLog.md
+++ b/src/FrontDoor/FrontDoor/ChangeLog.md
@@ -18,6 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
+* Fixed New-AzFrontDoorWafPolicy cmdlet to support adding Tags for the Azure Frontdoor waf policy
## Version 1.9.0
* Allowed rule engine action creation without RouteConfigurationOverride for `New-AzFrontDoorRulesEngineActionObject`.
diff --git a/src/FrontDoor/FrontDoor/Cmdlets/NewFrontDoorWafPolicy.cs b/src/FrontDoor/FrontDoor/Cmdlets/NewFrontDoorWafPolicy.cs
index c00dc4b94741..9862cb416576 100644
--- a/src/FrontDoor/FrontDoor/Cmdlets/NewFrontDoorWafPolicy.cs
+++ b/src/FrontDoor/FrontDoor/Cmdlets/NewFrontDoorWafPolicy.cs
@@ -23,6 +23,7 @@
using System.Linq;
using System.Management.Automation;
using System.Text;
+using System.Collections;
namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets
{
@@ -90,7 +91,13 @@ public class NewFrontDoorWafPolicy : AzureFrontDoorCmdletBase
///
[Parameter(Mandatory = false, HelpMessage = "Custom Response Body")]
public string CustomBlockResponseBody { get; set; }
-
+
+ ///
+ /// The tags to associate with the Front Door Waf Policy.
+ ///
+ [Parameter(Mandatory = false, HelpMessage = "The tags associate with the Front Door Waf Policy.")]
+ public Hashtable Tag { get; set; }
+
///
/// Defines if the body should be inspected by managed rules. Possible values include: 'Enabled', 'Disabled'
///
@@ -118,6 +125,7 @@ public override void ExecuteCmdlet()
}
var updateParameters = new Management.FrontDoor.Models.WebApplicationFirewallPolicy
{
+ Tags = Tag?.ToDictionaryTags(),
Location = "global",
CustomRules = new Management.FrontDoor.Models.CustomRuleList()
{
diff --git a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorWafPolicy.md b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorWafPolicy.md
index ccb2f934f704..978fb43638f6 100644
--- a/src/FrontDoor/FrontDoor/help/New-AzFrontDoorWafPolicy.md
+++ b/src/FrontDoor/FrontDoor/help/New-AzFrontDoorWafPolicy.md
@@ -16,7 +16,7 @@ Create WAF policy
New-AzFrontDoorWafPolicy -ResourceGroupName -Name [-EnabledState ]
[-Mode ] [-Customrule ] [-ManagedRule ] [-RedirectUrl ]
[-CustomBlockResponseStatusCode ] [-CustomBlockResponseBody ] [-RequestBodyCheck ]
- [-Sku ] [-DefaultProfile ] [-WhatIf] [-Confirm] []
+ [-Tag ] [-Sku ] [-DefaultProfile ] [-WhatIf] [-Confirm] []
```
## DESCRIPTION
@@ -192,6 +192,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
+### -Tag
+The tags associate with the FrontDoor WAF Policy.
+
+```yaml
+Type: System.Collections.Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
### -ResourceGroupName
The resource group name
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
}
}
diff --git a/src/KeyVault/KeyVault/help/Get-AzKeyVaultKeyRotationPolicy.md b/src/KeyVault/KeyVault/help/Get-AzKeyVaultKeyRotationPolicy.md
index c434aa5e5ab0..4cd0488dbff6 100644
--- a/src/KeyVault/KeyVault/help/Get-AzKeyVaultKeyRotationPolicy.md
+++ b/src/KeyVault/KeyVault/help/Get-AzKeyVaultKeyRotationPolicy.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll-Help.xml
Module Name: Az.KeyVault
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.keyvault/get-azkeyvaultkeyrotationpolicy
schema: 2.0.0
---
diff --git a/src/KeyVault/KeyVault/help/Invoke-AzKeyVaultKeyRotation.md b/src/KeyVault/KeyVault/help/Invoke-AzKeyVaultKeyRotation.md
index ca521b6bc368..513497c4a8ed 100644
--- a/src/KeyVault/KeyVault/help/Invoke-AzKeyVaultKeyRotation.md
+++ b/src/KeyVault/KeyVault/help/Invoke-AzKeyVaultKeyRotation.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll-Help.xml
Module Name: Az.KeyVault
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.keyvault/invoke-azkeyvaultkeyrotation
schema: 2.0.0
---
diff --git a/src/KeyVault/KeyVault/help/Set-AzKeyVaultKeyRotationPolicy.md b/src/KeyVault/KeyVault/help/Set-AzKeyVaultKeyRotationPolicy.md
index 97126ae87cb5..10a81cbe2974 100644
--- a/src/KeyVault/KeyVault/help/Set-AzKeyVaultKeyRotationPolicy.md
+++ b/src/KeyVault/KeyVault/help/Set-AzKeyVaultKeyRotationPolicy.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll-Help.xml
Module Name: Az.KeyVault
-online version:
+online version: https://learn.microsoft.com/powershell/module/az.keyvault/set-azkeyvaultkeyrotationpolicy
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/Get-AzMLWorkspaceConnection.md b/src/MachineLearningServices/help/Get-AzMLWorkspaceConnection.md
index f4e352bf3f2c..7c9f09f54f32 100644
--- a/src/MachineLearningServices/help/Get-AzMLWorkspaceConnection.md
+++ b/src/MachineLearningServices/help/Get-AzMLWorkspaceConnection.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# Get-AzMLWorkspaceConnection
## SYNOPSIS
-
+Get the connection of the specified machine learning workspace.
## SYNTAX
@@ -31,7 +31,7 @@ Get-AzMLWorkspaceConnection -InputObject [-De
```
## DESCRIPTION
-
+Get the connection of the specified machine learning workspace.
## EXAMPLES
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceAksObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceAksObject.md
index c7e6c1992d44..e3a07ac419f1 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceAksObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceAksObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceAksObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspaceaksobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceAmlComputeObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceAmlComputeObject.md
index 59d0cdf0029b..3bba4be1d2a0 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceAmlComputeObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceAmlComputeObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceAmlComputeObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspaceamlcomputeobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceCommandJobObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceCommandJobObject.md
index e2db2813881a..ddf61a908d27 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceCommandJobObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceCommandJobObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceCommandJobObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacecommandjobobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceComputeInstanceObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceComputeInstanceObject.md
index 3dac7bf36c5a..b61ff6a8a49f 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceComputeInstanceObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceComputeInstanceObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceComputeInstanceObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacecomputeinstanceobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceComputeStartStopScheduleObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceComputeStartStopScheduleObject.md
index 15e43fa2c7d8..57f15020a560 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceComputeStartStopScheduleObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceComputeStartStopScheduleObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceComputeStartStopScheduleObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacecomputestartstopscheduleobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceConnection.md b/src/MachineLearningServices/help/New-AzMLWorkspaceConnection.md
index 011761317db4..eb4c110a8206 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceConnection.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceConnection.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# New-AzMLWorkspaceConnection
## SYNOPSIS
-
+Creates or updates a workspace connection with the specified parameters.
## SYNTAX
@@ -20,7 +20,7 @@ New-AzMLWorkspaceConnection -Name -ResourceGroupName -Workspac
```
## DESCRIPTION
-
+Creates or updates a workspace connection with the specified parameters.
## EXAMPLES
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceCustomModelJobInputObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceCustomModelJobInputObject.md
index 67b0cec645f0..9b72547acce0 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceCustomModelJobInputObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceCustomModelJobInputObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceCustomModelJobInputObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacecustommodeljobinputobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceCustomModelJobOutputObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceCustomModelJobOutputObject.md
index a682cf2f2a7d..8d9bdb2fd885 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceCustomModelJobOutputObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceCustomModelJobOutputObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceCustomModelJobOutputObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacecustommodeljoboutputobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceDataFactoryObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceDataFactoryObject.md
index 28dd1b09170d..1bdae813425a 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceDataFactoryObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceDataFactoryObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceDataFactoryObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacedatafactoryobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceDataLakeAnalyticsObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceDataLakeAnalyticsObject.md
index 68fdc3024e00..5c3ee0fd6907 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceDataLakeAnalyticsObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceDataLakeAnalyticsObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceDataLakeAnalyticsObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacedatalakeanalyticsobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceDatabricksObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceDatabricksObject.md
index e81dbf305ec9..f1f3ab340583 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceDatabricksObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceDatabricksObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceDatabricksObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacedatabricksobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreBlobObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreBlobObject.md
index c288c12c094b..9ee5fdb0e9df 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreBlobObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreBlobObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceDatastoreBlobObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacedatastoreblobobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreCredentialObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreCredentialObject.md
index 634edb1b31f6..15f9bb3e4a26 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreCredentialObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreCredentialObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceDatastoreCredentialObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacedatastorecredentialobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreDataLakeGen1Object.md b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreDataLakeGen1Object.md
index 22861c8e30e5..74d3390fa3fc 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreDataLakeGen1Object.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreDataLakeGen1Object.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceDatastoreDataLakeGen1Object
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacedatastoredatalakegen1object
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreDataLakeGen2Object.md b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreDataLakeGen2Object.md
index 4aa306ddb62d..ee79c4a69eca 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreDataLakeGen2Object.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreDataLakeGen2Object.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceDatastoreDataLakeGen2Object
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacedatastoredatalakegen2object
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreFileObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreFileObject.md
index 2fdbe9f08b5c..87ff759e4d42 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreFileObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreFileObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceDatastoreFileObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacedatastorefileobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreKeyCredentialObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreKeyCredentialObject.md
index e468eaf38852..5e15995a8339 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreKeyCredentialObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreKeyCredentialObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/New-AzMLWorkspaceDatastoreKeyCredentialObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacedatastorekeycredentialobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreNoneCredentialObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreNoneCredentialObject.md
index cd21f6063f0a..1e4d3f19fb7d 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreNoneCredentialObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreNoneCredentialObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceDatastoreNoneCredentialObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacedatastorenonecredentialobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreSasCredentialObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreSasCredentialObject.md
index 2a1233fca75c..ac21d43a49cc 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreSasCredentialObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreSasCredentialObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceDatastoreSasCredentialObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacedatastoresascredentialobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreServicePrincipalCredentialObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreServicePrincipalCredentialObject.md
index 43c433db4a59..ae894f96c3e1 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreServicePrincipalCredentialObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceDatastoreServicePrincipalCredentialObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceDatastoreServicePrincipalCredentialObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacedatastoreserviceprincipalcredentialobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceHDInsightObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceHDInsightObject.md
index 80a5516fdf39..5e4071b2dec6 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceHDInsightObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceHDInsightObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceHDInsightObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacehdinsightobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceJobServiceObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceJobServiceObject.md
index 6191237cd1ac..661447773396 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceJobServiceObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceJobServiceObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceJobServiceObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacejobserviceobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceKubernetesObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceKubernetesObject.md
index 238a0f211543..cadd0fc10985 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceKubernetesObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceKubernetesObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceKubernetesObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacekubernetesobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceLiteralJobInputObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceLiteralJobInputObject.md
index 30100d0ee0a7..cdb7b1da5a09 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceLiteralJobInputObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceLiteralJobInputObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceLiteralJobInputObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspaceliteraljobinputobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceMLFlowModelJobInputObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceMLFlowModelJobInputObject.md
index 7f46b4013533..40a0c13f8c47 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceMLFlowModelJobInputObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceMLFlowModelJobInputObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceMLFlowModelJobInputObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacemlflowmodeljobinputobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceMLFlowModelJobOutputObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceMLFlowModelJobOutputObject.md
index 9da689000392..11502492272e 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceMLFlowModelJobOutputObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceMLFlowModelJobOutputObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceMLFlowModelJobOutputObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacemlflowmodeljoboutputobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceMLTableJobInputObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceMLTableJobInputObject.md
index 4930c52e1041..88db20520bd0 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceMLTableJobInputObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceMLTableJobInputObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceMLTableJobInputObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacemltablejobinputobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceMLTableJobOutputObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceMLTableJobOutputObject.md
index a8dec40ed1cf..fa6ec2474ba0 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceMLTableJobOutputObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceMLTableJobOutputObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceMLTableJobOutputObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacemltablejoboutputobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspacePipelineJobObject.md b/src/MachineLearningServices/help/New-AzMLWorkspacePipelineJobObject.md
index b4600305311f..ea2e5accc90e 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspacePipelineJobObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspacePipelineJobObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspacePipelineJobObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacepipelinejobobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceQuotaPropertiesObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceQuotaPropertiesObject.md
index 7f03f3459b3f..7b3ab056d7e3 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceQuotaPropertiesObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceQuotaPropertiesObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceQuotaPropertiesObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacequotapropertiesobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceSharedPrivateLinkResourceObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceSharedPrivateLinkResourceObject.md
index b1dcf94eea6a..bdd00df5060c 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceSharedPrivateLinkResourceObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceSharedPrivateLinkResourceObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceSharedPrivateLinkResourceObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacesharedprivatelinkresourceobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceSweepJobObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceSweepJobObject.md
index 61dc7b52c2cc..f795d9d9e949 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceSweepJobObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceSweepJobObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceSweepJobObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacesweepjobobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceSynapseSparkObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceSynapseSparkObject.md
index 8984bb5d798b..6306b5c3ba8e 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceSynapseSparkObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceSynapseSparkObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceSynapseSparkObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacesynapsesparkobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceTritonModelJobInputObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceTritonModelJobInputObject.md
index 815dd5242f6b..a1b847ba964c 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceTritonModelJobInputObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceTritonModelJobInputObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceTritonModelJobInputObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacetritonmodeljobinputobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceTritonModelJobOutputObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceTritonModelJobOutputObject.md
index 02048894ef7d..91124fee9f82 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceTritonModelJobOutputObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceTritonModelJobOutputObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceTritonModelJobOutputObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacetritonmodeljoboutputobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceUriFileJobInputObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceUriFileJobInputObject.md
index 5a33ca101b77..b5e6eda6acd1 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceUriFileJobInputObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceUriFileJobInputObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceUriFileJobInputObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspaceurifilejobinputobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceUriFileJobOutputObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceUriFileJobOutputObject.md
index 2536941da671..682ce6d383af 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceUriFileJobOutputObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceUriFileJobOutputObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceUriFileJobOutputObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspaceurifilejoboutputobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceUriFolderJobInputObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceUriFolderJobInputObject.md
index 30a554882e83..7b84a43849a9 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceUriFolderJobInputObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceUriFolderJobInputObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceUriFolderJobInputObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspaceurifolderjobinputobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceUriFolderJobOutputObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceUriFolderJobOutputObject.md
index 08627ee62193..a4275cec45bd 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceUriFolderJobOutputObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceUriFolderJobOutputObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceUriFolderJobOutputObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspaceurifolderjoboutputobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/New-AzMLWorkspaceVirtualMachineObject.md b/src/MachineLearningServices/help/New-AzMLWorkspaceVirtualMachineObject.md
index 6ffac04494a8..1853b222457a 100644
--- a/src/MachineLearningServices/help/New-AzMLWorkspaceVirtualMachineObject.md
+++ b/src/MachineLearningServices/help/New-AzMLWorkspaceVirtualMachineObject.md
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.MachineLearningServices
-online version: https://learn.microsoft.com/powershell/module/az.MLWorkspace/new-AzMLWorkspaceVirtualMachineObject
+online version: https://learn.microsoft.com/powershell/module/az.machinelearningservices/new-azmlworkspacevirtualmachineobject
schema: 2.0.0
---
diff --git a/src/MachineLearningServices/help/Remove-AzMLWorkspaceConnection.md b/src/MachineLearningServices/help/Remove-AzMLWorkspaceConnection.md
index 11d09fc2f43a..994fc863453a 100644
--- a/src/MachineLearningServices/help/Remove-AzMLWorkspaceConnection.md
+++ b/src/MachineLearningServices/help/Remove-AzMLWorkspaceConnection.md
@@ -8,7 +8,7 @@ schema: 2.0.0
# Remove-AzMLWorkspaceConnection
## SYNOPSIS
-
+Deletes a machine learning workspace connection.
## SYNTAX
@@ -25,7 +25,7 @@ Remove-AzMLWorkspaceConnection -InputObject [
```
## DESCRIPTION
-
+Deletes a machine learning workspace connection.
## EXAMPLES
diff --git a/src/ManagedServiceIdentity/Az.ManagedServiceIdentity.format.ps1xml b/src/ManagedServiceIdentity/Az.ManagedServiceIdentity.format.ps1xml
index 202e85fc8e09..dbfce948bc09 100644
--- a/src/ManagedServiceIdentity/Az.ManagedServiceIdentity.format.ps1xml
+++ b/src/ManagedServiceIdentity/Az.ManagedServiceIdentity.format.ps1xml
@@ -47,6 +47,546 @@
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ProxyResourceAutoGenerated
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ProxyResourceAutoGenerated
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Name
+
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.Resource
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.Resource
+
+
+
+
+
+
+
+
+
+
+
+ Name
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemData
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemData
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CreatedAt
+
+
+ CreatedBy
+
+
+ CreatedByType
+
+
+ LastModifiedAt
+
+
+ LastModifiedBy
+
+
+ LastModifiedByType
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.TrackedResource
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.TrackedResource
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Name
+
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
+
+ Location
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudErrorBody
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudErrorBody
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Code
+
+
+ Message
+
+
+ Target
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.FederatedIdentityCredential
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.FederatedIdentityCredential
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Name
+
+
+ Issuer
+
+
+ Subject
+
+
+ Audience
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.FederatedIdentityCredentialsListResult
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.FederatedIdentityCredentialsListResult
+
+
+
+
+
+
+
+
+
+
+
+ NextLink
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.Identity
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.Identity
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Location
+
+
+ Name
+
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
+
+ ResourceGroupName
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IdentityUpdate
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IdentityUpdate
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Name
+
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
+
+ Location
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.OperationListResult
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.OperationListResult
+
+
+
+
+
+
+
+
+
+
+
+ NextLink
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.SystemAssignedIdentity
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.SystemAssignedIdentity
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Name
+
+
+ SystemDataCreatedAt
+
+
+ SystemDataCreatedBy
+
+
+ SystemDataCreatedByType
+
+
+ SystemDataLastModifiedAt
+
+
+ SystemDataLastModifiedBy
+
+
+ SystemDataLastModifiedByType
+
+
+ Location
+
+
+ ResourceGroupName
+
+
+
+
+
+
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.UserAssignedIdentitiesListResult
+
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.UserAssignedIdentitiesListResult
+
+
+
+
+
+
+
+
+
+
+
+ NextLink
+
+
+
+
+
+
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ProxyResource
@@ -70,9 +610,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.Resource
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ResourceAutoGenerated
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.Resource
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ResourceAutoGenerated
@@ -92,9 +632,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResource
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceAutoGenerated
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResource
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceAutoGenerated
@@ -216,9 +756,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBody
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyAutoGenerated
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBody
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyAutoGenerated
@@ -250,9 +790,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredential
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialAutoGenerated
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredential
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialAutoGenerated
@@ -260,13 +800,7 @@
-
-
-
-
-
-
-
+
@@ -276,13 +810,7 @@
Name
- Issuer
-
-
- Subject
-
-
- Audience
+ ResourceGroupName
@@ -324,9 +852,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialsListResult
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialsListResultAutoGenerated
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialsListResult
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialsListResultAutoGenerated
@@ -346,9 +874,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.Identity
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityAutoGenerated
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.Identity
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityAutoGenerated
@@ -380,9 +908,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityUpdate
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityUpdateAutoGenerated
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityUpdate
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityUpdateAutoGenerated
@@ -492,9 +1020,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.OperationListResult
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.OperationListResultAutoGenerated
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.OperationListResult
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.OperationListResultAutoGenerated
@@ -514,9 +1042,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentity
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityAutoGenerated
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentity
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityAutoGenerated
@@ -610,9 +1138,9 @@
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentitiesListResult
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentitiesListResultAutoGenerated
- Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentitiesListResult
+ Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentitiesListResultAutoGenerated
diff --git a/src/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1 b/src/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1
index 712c7d3e82b6..2dd9e2eea817 100644
--- a/src/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1
+++ b/src/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1
@@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
-# Generated on: 10/20/2022
+# Generated on: 2/17/2023
#
@{
@@ -114,13 +114,7 @@ PrivateData = @{
# IconUri = ''
# ReleaseNotes of this module
- ReleaseNotes = '* Supported Create/Get/Update/Remove Federated Identity Credentials on a User Assigned Managed Identity
- * ''Get-AzFederatedIdentityCredentials''
- * ''New-AzFederatedIdentityCredentials''
- * ''Remove-AzFederatedIdentityCredentials''
- * ''Update-AzFederatedIdentityCredentials''
-* Supported List Associated Resources on a User Assigned Managed Identity
- * ''Get-AzUserAssignedIdentityAssociatedResource'''
+ # ReleaseNotes = ''
# Prerelease string of this module
# Prerelease = ''
diff --git a/src/ManagedServiceIdentity/Az.ManagedServiceIdentity.psm1 b/src/ManagedServiceIdentity/Az.ManagedServiceIdentity.psm1
index 0acbb172d9d9..68b2357d93f5 100644
--- a/src/ManagedServiceIdentity/Az.ManagedServiceIdentity.psm1
+++ b/src/ManagedServiceIdentity/Az.ManagedServiceIdentity.psm1
@@ -33,7 +33,7 @@
}
if(-not $accountsModule) {
- Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. For installation instructions, please see: https://learn.microsoft.com/powershell/azure/install-az-ps" -ErrorAction Stop
+ Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. For installation instructions, please see: https://docs.microsoft.com/powershell/azure/install-az-ps" -ErrorAction Stop
} elseif (($accountsModule.Version -lt [System.Version]'2.7.5') -and (-not $localAccounts)) {
Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to add the switch '-RegenerateSupportModule' when executing 'test-module.ps1'. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop
}
diff --git a/src/ManagedServiceIdentity/Changelog.md b/src/ManagedServiceIdentity/Changelog.md
index eb132e23f0ba..d14454b8881b 100644
--- a/src/ManagedServiceIdentity/Changelog.md
+++ b/src/ManagedServiceIdentity/Changelog.md
@@ -18,6 +18,8 @@
- Additional information about change #1
-->
## Upcoming Release
+* Upgraded to API version 2023-01-31.
+* Federated identity credentials GA version is available now.
## Version 1.1.0
* Supported Create/Get/Update/Remove Federated Identity Credentials on a User Assigned Managed Identity
diff --git a/src/ManagedServiceIdentity/ManagedServiceIdentity.sln b/src/ManagedServiceIdentity/ManagedServiceIdentity.sln
index 95693c142b5c..9d9ef62d9419 100644
--- a/src/ManagedServiceIdentity/ManagedServiceIdentity.sln
+++ b/src/ManagedServiceIdentity/ManagedServiceIdentity.sln
@@ -1,104 +1,58 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 16
-VisualStudioVersion = 16.6.30114.105
+# Visual Studio Version 17
+VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{546F39B2-DE97-4A6A-B1CE-20717365B355}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{76381DF9-AD5E-4F66-AC3F-5FCFD8E2F040}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{2BEEAE17-FFED-4D01-819C-998D94953F37}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AssemblyLoading", "..\Accounts\AssemblyLoading\AssemblyLoading.csproj", "{67810F89-508E-471A-B97C-2B221A525887}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{E675828F-0AF0-4D10-8663-21B9D0D1FE01}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{41AEC1D1-C3D0-4E76-9A55-5B3D37DB7364}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{80854D19-8126-46E3-A78C-4989CEE0E556}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{AD0BE072-966B-4B2A-AF9C-B34E54D4F48A}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{A979A5D7-BA66-4587-9592-5E44D0403011}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ManagedServiceIdentity", "Az.ManagedServiceIdentity.csproj", "{E579A17A-9473-4506-9C46-252051A92717}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{3CF96A41-1040-4E87-B2E6-367E769D47A9}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ManagedServiceIdentity", "Az.ManagedServiceIdentity.csproj", "{1D33E8C7-6DCE-47F7-A7B4-39DA6F84D55C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
- Debug|x64 = Debug|x64
- Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
- Release|x64 = Release|x64
- Release|x86 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {546F39B2-DE97-4A6A-B1CE-20717365B355}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {546F39B2-DE97-4A6A-B1CE-20717365B355}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {546F39B2-DE97-4A6A-B1CE-20717365B355}.Debug|x64.ActiveCfg = Debug|Any CPU
- {546F39B2-DE97-4A6A-B1CE-20717365B355}.Debug|x64.Build.0 = Debug|Any CPU
- {546F39B2-DE97-4A6A-B1CE-20717365B355}.Debug|x86.ActiveCfg = Debug|Any CPU
- {546F39B2-DE97-4A6A-B1CE-20717365B355}.Debug|x86.Build.0 = Debug|Any CPU
- {546F39B2-DE97-4A6A-B1CE-20717365B355}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {546F39B2-DE97-4A6A-B1CE-20717365B355}.Release|Any CPU.Build.0 = Release|Any CPU
- {546F39B2-DE97-4A6A-B1CE-20717365B355}.Release|x64.ActiveCfg = Release|Any CPU
- {546F39B2-DE97-4A6A-B1CE-20717365B355}.Release|x64.Build.0 = Release|Any CPU
- {546F39B2-DE97-4A6A-B1CE-20717365B355}.Release|x86.ActiveCfg = Release|Any CPU
- {546F39B2-DE97-4A6A-B1CE-20717365B355}.Release|x86.Build.0 = Release|Any CPU
- {2BEEAE17-FFED-4D01-819C-998D94953F37}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {2BEEAE17-FFED-4D01-819C-998D94953F37}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {2BEEAE17-FFED-4D01-819C-998D94953F37}.Debug|x64.ActiveCfg = Debug|Any CPU
- {2BEEAE17-FFED-4D01-819C-998D94953F37}.Debug|x64.Build.0 = Debug|Any CPU
- {2BEEAE17-FFED-4D01-819C-998D94953F37}.Debug|x86.ActiveCfg = Debug|Any CPU
- {2BEEAE17-FFED-4D01-819C-998D94953F37}.Debug|x86.Build.0 = Debug|Any CPU
- {2BEEAE17-FFED-4D01-819C-998D94953F37}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {2BEEAE17-FFED-4D01-819C-998D94953F37}.Release|Any CPU.Build.0 = Release|Any CPU
- {2BEEAE17-FFED-4D01-819C-998D94953F37}.Release|x64.ActiveCfg = Release|Any CPU
- {2BEEAE17-FFED-4D01-819C-998D94953F37}.Release|x64.Build.0 = Release|Any CPU
- {2BEEAE17-FFED-4D01-819C-998D94953F37}.Release|x86.ActiveCfg = Release|Any CPU
- {2BEEAE17-FFED-4D01-819C-998D94953F37}.Release|x86.Build.0 = Release|Any CPU
- {E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Debug|x64.ActiveCfg = Debug|Any CPU
- {E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Debug|x64.Build.0 = Debug|Any CPU
- {E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Debug|x86.ActiveCfg = Debug|Any CPU
- {E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Debug|x86.Build.0 = Debug|Any CPU
- {E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Release|Any CPU.Build.0 = Release|Any CPU
- {E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Release|x64.ActiveCfg = Release|Any CPU
- {E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Release|x64.Build.0 = Release|Any CPU
- {E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Release|x86.ActiveCfg = Release|Any CPU
- {E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Release|x86.Build.0 = Release|Any CPU
- {80854D19-8126-46E3-A78C-4989CEE0E556}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {80854D19-8126-46E3-A78C-4989CEE0E556}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {80854D19-8126-46E3-A78C-4989CEE0E556}.Debug|x64.ActiveCfg = Debug|Any CPU
- {80854D19-8126-46E3-A78C-4989CEE0E556}.Debug|x64.Build.0 = Debug|Any CPU
- {80854D19-8126-46E3-A78C-4989CEE0E556}.Debug|x86.ActiveCfg = Debug|Any CPU
- {80854D19-8126-46E3-A78C-4989CEE0E556}.Debug|x86.Build.0 = Debug|Any CPU
- {80854D19-8126-46E3-A78C-4989CEE0E556}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {80854D19-8126-46E3-A78C-4989CEE0E556}.Release|Any CPU.Build.0 = Release|Any CPU
- {80854D19-8126-46E3-A78C-4989CEE0E556}.Release|x64.ActiveCfg = Release|Any CPU
- {80854D19-8126-46E3-A78C-4989CEE0E556}.Release|x64.Build.0 = Release|Any CPU
- {80854D19-8126-46E3-A78C-4989CEE0E556}.Release|x86.ActiveCfg = Release|Any CPU
- {80854D19-8126-46E3-A78C-4989CEE0E556}.Release|x86.Build.0 = Release|Any CPU
- {99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Debug|x64.ActiveCfg = Debug|Any CPU
- {99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Debug|x64.Build.0 = Debug|Any CPU
- {99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Debug|x86.ActiveCfg = Debug|Any CPU
- {99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Debug|x86.Build.0 = Debug|Any CPU
- {99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Release|Any CPU.Build.0 = Release|Any CPU
- {99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Release|x64.ActiveCfg = Release|Any CPU
- {99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Release|x64.Build.0 = Release|Any CPU
- {99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Release|x86.ActiveCfg = Release|Any CPU
- {99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Release|x86.Build.0 = Release|Any CPU
- {E579A17A-9473-4506-9C46-252051A92717}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {E579A17A-9473-4506-9C46-252051A92717}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {E579A17A-9473-4506-9C46-252051A92717}.Debug|x64.ActiveCfg = Debug|Any CPU
- {E579A17A-9473-4506-9C46-252051A92717}.Debug|x64.Build.0 = Debug|Any CPU
- {E579A17A-9473-4506-9C46-252051A92717}.Debug|x86.ActiveCfg = Debug|Any CPU
- {E579A17A-9473-4506-9C46-252051A92717}.Debug|x86.Build.0 = Debug|Any CPU
- {E579A17A-9473-4506-9C46-252051A92717}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {E579A17A-9473-4506-9C46-252051A92717}.Release|Any CPU.Build.0 = Release|Any CPU
- {E579A17A-9473-4506-9C46-252051A92717}.Release|x64.ActiveCfg = Release|Any CPU
- {E579A17A-9473-4506-9C46-252051A92717}.Release|x64.Build.0 = Release|Any CPU
- {E579A17A-9473-4506-9C46-252051A92717}.Release|x86.ActiveCfg = Release|Any CPU
- {E579A17A-9473-4506-9C46-252051A92717}.Release|x86.Build.0 = Release|Any CPU
+ {76381DF9-AD5E-4F66-AC3F-5FCFD8E2F040}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {76381DF9-AD5E-4F66-AC3F-5FCFD8E2F040}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {76381DF9-AD5E-4F66-AC3F-5FCFD8E2F040}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {76381DF9-AD5E-4F66-AC3F-5FCFD8E2F040}.Release|Any CPU.Build.0 = Release|Any CPU
+ {67810F89-508E-471A-B97C-2B221A525887}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {67810F89-508E-471A-B97C-2B221A525887}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {67810F89-508E-471A-B97C-2B221A525887}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {67810F89-508E-471A-B97C-2B221A525887}.Release|Any CPU.Build.0 = Release|Any CPU
+ {41AEC1D1-C3D0-4E76-9A55-5B3D37DB7364}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {41AEC1D1-C3D0-4E76-9A55-5B3D37DB7364}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {41AEC1D1-C3D0-4E76-9A55-5B3D37DB7364}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {41AEC1D1-C3D0-4E76-9A55-5B3D37DB7364}.Release|Any CPU.Build.0 = Release|Any CPU
+ {AD0BE072-966B-4B2A-AF9C-B34E54D4F48A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {AD0BE072-966B-4B2A-AF9C-B34E54D4F48A}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {AD0BE072-966B-4B2A-AF9C-B34E54D4F48A}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {AD0BE072-966B-4B2A-AF9C-B34E54D4F48A}.Release|Any CPU.Build.0 = Release|Any CPU
+ {A979A5D7-BA66-4587-9592-5E44D0403011}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {A979A5D7-BA66-4587-9592-5E44D0403011}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {A979A5D7-BA66-4587-9592-5E44D0403011}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {A979A5D7-BA66-4587-9592-5E44D0403011}.Release|Any CPU.Build.0 = Release|Any CPU
+ {3CF96A41-1040-4E87-B2E6-367E769D47A9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {3CF96A41-1040-4E87-B2E6-367E769D47A9}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {3CF96A41-1040-4E87-B2E6-367E769D47A9}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {3CF96A41-1040-4E87-B2E6-367E769D47A9}.Release|Any CPU.Build.0 = Release|Any CPU
+ {1D33E8C7-6DCE-47F7-A7B4-39DA6F84D55C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {1D33E8C7-6DCE-47F7-A7B4-39DA6F84D55C}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {1D33E8C7-6DCE-47F7-A7B4-39DA6F84D55C}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {1D33E8C7-6DCE-47F7-A7B4-39DA6F84D55C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
diff --git a/src/ManagedServiceIdentity/README.md b/src/ManagedServiceIdentity/README.md
index f3b8491a41f4..e34eec4c6087 100644
--- a/src/ManagedServiceIdentity/README.md
+++ b/src/ManagedServiceIdentity/README.md
@@ -34,13 +34,14 @@ branch: main
require:
- $(this-folder)/../readme.azure.noprofile.md
input-file:
+ - $(repo)/specification/msi/resource-manager/Microsoft.ManagedIdentity/stable/2023-01-31/ManagedIdentity.json
- $(repo)/specification/msi/resource-manager/Microsoft.ManagedIdentity/preview/2022-01-31-preview/ManagedIdentity.json
subject-prefix: ""
resourcegroup-append: true
nested-object-to-string: true
identity-correction-for-post: true
-module-version: 0.2.0
+module-version: 0.3.0
directive:
- where:
@@ -65,7 +66,7 @@ directive:
set:
parameter-name: Name
- # Associated Resources
+ # Associated Resources use 2022-01-31-preview API version
- where:
subject: UserAssignedIdentityAssociatedResource
@@ -78,6 +79,8 @@ directive:
set:
preview-message: This is a preview version of the Associated Resources feature.
+ # END
+
# Federated identity credentials
- where:
@@ -132,8 +135,26 @@ directive:
- Subject
- Audience
+ # END
+
+ # Below instructions remove duplicate API methods which use 2022-01-31-preview. MUST be removed when 2022-01-31-preview is removed.
+
- where:
subject: FederatedIdentityCredentials
- set:
- preview-message: This is a preview version of the Federated Identity Credentials feature.
+ variant: ^Get1$|^List1$|^GetViaIdentity1$|^Create1$|^CreateExpanded1$|^CreateViaIdentity1$|^CreateViaIdentityExpanded1$|^Delete1$|^DeleteViaIdentity1$|^Update1$|^UpdateExpanded1$|^UpdateViaIdentity1$|^UpdateViaIdentityExpanded1$
+ remove: true
+
+ - where:
+ verb: Get
+ subject: SystemAssignedIdentity
+ variant: ^Get1$|^GetViaIdentity1$
+ remove: true
+
+ - where:
+ subject: UserAssignedIdentity
+ variant: ^Get1$|^GetViaIdentity1$|^List2$|^List3$|^Create1$|^CreateExpanded1$|^CreateViaIdentity1$|^CreateViaIdentityExpanded1$|^Delete1$|^DeleteViaIdentity1$|^Update1$|^UpdateExpanded1$|^UpdateViaIdentity1$|^UpdateViaIdentityExpanded1$
+ remove: true
+
+ # END
+
```
diff --git a/src/ManagedServiceIdentity/custom/README.md b/src/ManagedServiceIdentity/custom/README.md
index e9c93e1b132c..28e8dbbeb447 100644
--- a/src/ManagedServiceIdentity/custom/README.md
+++ b/src/ManagedServiceIdentity/custom/README.md
@@ -32,7 +32,7 @@ These provide functionality to our HTTP pipeline and other useful features. In s
### Attributes
For processing the cmdlets, we've created some additional attributes:
- `Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DescriptionAttribute`
- - Used in C# cmdlets to provide a high-level description of the cmdlet. This is propagated to reference documentation via [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts.
+ - Used in C# cmdlets to provide a high-level description of the cmdlet. This is propagated to reference documentation via [help comments](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts.
- `Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotExportAttribute`
- Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.ManagedServiceIdentity`.
- `Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.InternalExportAttribute`
diff --git a/src/ManagedServiceIdentity/exports/Get-AzFederatedIdentityCredentials.ps1 b/src/ManagedServiceIdentity/exports/Get-AzFederatedIdentityCredentials.ps1
index f89f77f10c61..0dfe250eac41 100644
--- a/src/ManagedServiceIdentity/exports/Get-AzFederatedIdentityCredentials.ps1
+++ b/src/ManagedServiceIdentity/exports/Get-AzFederatedIdentityCredentials.ps1
@@ -31,7 +31,7 @@ New-AzFederatedIdentityCredentials -ResourceGroupName azure-rg-test -IdentityNam
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.IManagedServiceIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential
+Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -48,7 +48,7 @@ INPUTOBJECT : Identity Parameter
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azfederatedidentitycredentials
#>
function Get-AzFederatedIdentityCredentials {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential])]
[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)]
param(
[Parameter(ParameterSetName='Get', Mandatory)]
@@ -68,7 +68,8 @@ param(
[Parameter(ParameterSetName='List', Mandatory)]
[Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category('Path')]
[System.String]
- # The name of the Resource Group to which the identity belongs.
+ # The name of the resource group.
+ # The name is case insensitive.
${ResourceGroupName},
[Parameter(ParameterSetName='Get')]
diff --git a/src/ManagedServiceIdentity/exports/Get-AzSystemAssignedIdentity.ps1 b/src/ManagedServiceIdentity/exports/Get-AzSystemAssignedIdentity.ps1
index a99c4d7e5b92..44a1d4da136a 100644
--- a/src/ManagedServiceIdentity/exports/Get-AzSystemAssignedIdentity.ps1
+++ b/src/ManagedServiceIdentity/exports/Get-AzSystemAssignedIdentity.ps1
@@ -23,12 +23,12 @@ Gets the systemAssignedIdentity available under the specified RP scope.
Get-AzSystemAssignedIdentity -Scope "/subscriptions/00000000-0000-0000-00000000000/resourcegroups/lucas-rg-test/providers/Microsoft.Web/sites/functionportal01"
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity
+Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity
.Link
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azsystemassignedidentity
#>
function Get-AzSystemAssignedIdentity {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity])]
[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)]
param(
[Parameter(Mandatory)]
diff --git a/src/ManagedServiceIdentity/exports/Get-AzUserAssignedIdentity.ps1 b/src/ManagedServiceIdentity/exports/Get-AzUserAssignedIdentity.ps1
index 97528349d726..ec947222bf4f 100644
--- a/src/ManagedServiceIdentity/exports/Get-AzUserAssignedIdentity.ps1
+++ b/src/ManagedServiceIdentity/exports/Get-AzUserAssignedIdentity.ps1
@@ -32,7 +32,7 @@ New-AzUserAssignedIdentity -ResourceGroupName azure-rg-test -Name uai-pwsh01 -Lo
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.IManagedServiceIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity
+Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -49,7 +49,7 @@ INPUTOBJECT : Identity Parameter
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azuserassignedidentity
#>
function Get-AzUserAssignedIdentity {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity])]
[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)]
param(
[Parameter(ParameterSetName='Get', Mandatory)]
diff --git a/src/ManagedServiceIdentity/exports/New-AzFederatedIdentityCredentials.ps1 b/src/ManagedServiceIdentity/exports/New-AzFederatedIdentityCredentials.ps1
index b2a0139a14ea..060ab5f310e0 100644
--- a/src/ManagedServiceIdentity/exports/New-AzFederatedIdentityCredentials.ps1
+++ b/src/ManagedServiceIdentity/exports/New-AzFederatedIdentityCredentials.ps1
@@ -28,12 +28,12 @@ New-AzFederatedIdentityCredentials -ResourceGroupName azure-rg-test -IdentityNam
-Audience @("api://AzureADTokenExchange-Modified")
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential
+Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential
.Link
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/new-azfederatedidentitycredentials
#>
function New-AzFederatedIdentityCredentials {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(Mandatory)]
@@ -51,7 +51,8 @@ param(
[Parameter(Mandatory)]
[Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category('Path')]
[System.String]
- # The name of the Resource Group to which the identity belongs.
+ # The name of the resource group.
+ # The name is case insensitive.
${ResourceGroupName},
[Parameter()]
diff --git a/src/ManagedServiceIdentity/exports/New-AzUserAssignedIdentity.ps1 b/src/ManagedServiceIdentity/exports/New-AzUserAssignedIdentity.ps1
index 6d617617354d..6ff75a9cf191 100644
--- a/src/ManagedServiceIdentity/exports/New-AzUserAssignedIdentity.ps1
+++ b/src/ManagedServiceIdentity/exports/New-AzUserAssignedIdentity.ps1
@@ -23,12 +23,12 @@ Create or update an identity in the specified subscription and resource group.
New-AzUserAssignedIdentity -ResourceGroupName azure-rg-test -Name uai-pwsh01 -Location eastus
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity
+Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity
.Link
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/new-azuserassignedidentity
#>
function New-AzUserAssignedIdentity {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(Mandatory)]
diff --git a/src/ManagedServiceIdentity/exports/ProxyCmdletDefinitions.ps1 b/src/ManagedServiceIdentity/exports/ProxyCmdletDefinitions.ps1
index c5765d38b34f..9c3d93a939ef 100644
--- a/src/ManagedServiceIdentity/exports/ProxyCmdletDefinitions.ps1
+++ b/src/ManagedServiceIdentity/exports/ProxyCmdletDefinitions.ps1
@@ -31,7 +31,7 @@ New-AzFederatedIdentityCredentials -ResourceGroupName azure-rg-test -IdentityNam
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.IManagedServiceIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential
+Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -48,7 +48,7 @@ INPUTOBJECT : Identity Parameter
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azfederatedidentitycredentials
#>
function Get-AzFederatedIdentityCredentials {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential])]
[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)]
param(
[Parameter(ParameterSetName='Get', Mandatory)]
@@ -68,7 +68,8 @@ param(
[Parameter(ParameterSetName='List', Mandatory)]
[Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category('Path')]
[System.String]
- # The name of the Resource Group to which the identity belongs.
+ # The name of the resource group.
+ # The name is case insensitive.
${ResourceGroupName},
[Parameter(ParameterSetName='Get')]
@@ -235,12 +236,12 @@ Gets the systemAssignedIdentity available under the specified RP scope.
Get-AzSystemAssignedIdentity -Scope "/subscriptions/00000000-0000-0000-00000000000/resourcegroups/lucas-rg-test/providers/Microsoft.Web/sites/functionportal01"
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity
+Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity
.Link
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azsystemassignedidentity
#>
function Get-AzSystemAssignedIdentity {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity])]
[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)]
param(
[Parameter(Mandatory)]
@@ -585,7 +586,7 @@ New-AzUserAssignedIdentity -ResourceGroupName azure-rg-test -Name uai-pwsh01 -Lo
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.IManagedServiceIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity
+Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -602,7 +603,7 @@ INPUTOBJECT : Identity Parameter
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/get-azuserassignedidentity
#>
function Get-AzUserAssignedIdentity {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity])]
[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)]
param(
[Parameter(ParameterSetName='Get', Mandatory)]
@@ -776,12 +777,12 @@ New-AzFederatedIdentityCredentials -ResourceGroupName azure-rg-test -IdentityNam
-Audience @("api://AzureADTokenExchange-Modified")
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential
+Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential
.Link
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/new-azfederatedidentitycredentials
#>
function New-AzFederatedIdentityCredentials {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(Mandatory)]
@@ -799,7 +800,8 @@ param(
[Parameter(Mandatory)]
[Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category('Path')]
[System.String]
- # The name of the Resource Group to which the identity belongs.
+ # The name of the resource group.
+ # The name is case insensitive.
${ResourceGroupName},
[Parameter()]
@@ -966,12 +968,12 @@ Create or update an identity in the specified subscription and resource group.
New-AzUserAssignedIdentity -ResourceGroupName azure-rg-test -Name uai-pwsh01 -Location eastus
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity
+Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity
.Link
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/new-azuserassignedidentity
#>
function New-AzUserAssignedIdentity {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(Mandatory)]
@@ -1179,7 +1181,8 @@ param(
[Parameter(ParameterSetName='Delete', Mandatory)]
[Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category('Path')]
[System.String]
- # The name of the Resource Group to which the identity belongs.
+ # The name of the resource group.
+ # The name is case insensitive.
${ResourceGroupName},
[Parameter(ParameterSetName='Delete')]
@@ -1534,7 +1537,7 @@ Get-AzFederatedIdentityCredentials -ResourceGroupName azure-rg-test -IdentityNam
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.IManagedServiceIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential
+Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -1551,7 +1554,7 @@ INPUTOBJECT : Identity Parameter
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/update-azfederatedidentitycredentials
#>
function Update-AzFederatedIdentityCredentials {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential])]
[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
@@ -1569,7 +1572,8 @@ param(
[Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
[Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category('Path')]
[System.String]
- # The name of the Resource Group to which the identity belongs.
+ # The name of the resource group.
+ # The name is case insensitive.
${ResourceGroupName},
[Parameter(ParameterSetName='UpdateExpanded')]
@@ -1748,7 +1752,7 @@ Get-AzUserAssignedIdentity -ResourceGroupName azure-rg-test -Name uai-pwsh01 | U
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.IManagedServiceIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity
+Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -1765,7 +1769,7 @@ INPUTOBJECT : Identity Parameter
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/update-azuserassignedidentity
#>
function Update-AzUserAssignedIdentity {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity])]
[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
diff --git a/src/ManagedServiceIdentity/exports/README.md b/src/ManagedServiceIdentity/exports/README.md
index 796f5791b302..5ca68aff42a8 100644
--- a/src/ManagedServiceIdentity/exports/README.md
+++ b/src/ManagedServiceIdentity/exports/README.md
@@ -1,5 +1,5 @@
# Exports
-This directory contains the cmdlets *exported by* `Az.ManagedServiceIdentity`. No other cmdlets in this repository are directly exported. What that means is the `Az.ManagedServiceIdentity` module will run [Export-ModuleMember](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation.
+This directory contains the cmdlets *exported by* `Az.ManagedServiceIdentity`. No other cmdlets in this repository are directly exported. What that means is the `Az.ManagedServiceIdentity` module will run [Export-ModuleMember](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation.
## Info
- Modifiable: no
diff --git a/src/ManagedServiceIdentity/exports/Remove-AzFederatedIdentityCredentials.ps1 b/src/ManagedServiceIdentity/exports/Remove-AzFederatedIdentityCredentials.ps1
index deb4d5dcf52b..62c8f3dae3c6 100644
--- a/src/ManagedServiceIdentity/exports/Remove-AzFederatedIdentityCredentials.ps1
+++ b/src/ManagedServiceIdentity/exports/Remove-AzFederatedIdentityCredentials.ps1
@@ -62,7 +62,8 @@ param(
[Parameter(ParameterSetName='Delete', Mandatory)]
[Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category('Path')]
[System.String]
- # The name of the Resource Group to which the identity belongs.
+ # The name of the resource group.
+ # The name is case insensitive.
${ResourceGroupName},
[Parameter(ParameterSetName='Delete')]
diff --git a/src/ManagedServiceIdentity/exports/Update-AzFederatedIdentityCredentials.ps1 b/src/ManagedServiceIdentity/exports/Update-AzFederatedIdentityCredentials.ps1
index c1712d1cee2f..1f8250ddf4ca 100644
--- a/src/ManagedServiceIdentity/exports/Update-AzFederatedIdentityCredentials.ps1
+++ b/src/ManagedServiceIdentity/exports/Update-AzFederatedIdentityCredentials.ps1
@@ -29,7 +29,7 @@ Get-AzFederatedIdentityCredentials -ResourceGroupName azure-rg-test -IdentityNam
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.IManagedServiceIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential
+Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -46,7 +46,7 @@ INPUTOBJECT : Identity Parameter
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/update-azfederatedidentitycredentials
#>
function Update-AzFederatedIdentityCredentials {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential])]
[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
@@ -64,7 +64,8 @@ param(
[Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
[Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category('Path')]
[System.String]
- # The name of the Resource Group to which the identity belongs.
+ # The name of the resource group.
+ # The name is case insensitive.
${ResourceGroupName},
[Parameter(ParameterSetName='UpdateExpanded')]
diff --git a/src/ManagedServiceIdentity/exports/Update-AzUserAssignedIdentity.ps1 b/src/ManagedServiceIdentity/exports/Update-AzUserAssignedIdentity.ps1
index 648e4290294e..4defcb20189c 100644
--- a/src/ManagedServiceIdentity/exports/Update-AzUserAssignedIdentity.ps1
+++ b/src/ManagedServiceIdentity/exports/Update-AzUserAssignedIdentity.ps1
@@ -27,7 +27,7 @@ Get-AzUserAssignedIdentity -ResourceGroupName azure-rg-test -Name uai-pwsh01 | U
.Inputs
Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.IManagedServiceIdentity
.Outputs
-Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity
+Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity
.Notes
COMPLEX PARAMETER PROPERTIES
@@ -44,7 +44,7 @@ INPUTOBJECT : Identity Parameter
https://learn.microsoft.com/powershell/module/az.managedserviceidentity/update-azuserassignedidentity
#>
function Update-AzUserAssignedIdentity {
-[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity])]
+[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity])]
[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
diff --git a/src/ManagedServiceIdentity/generate-info.json b/src/ManagedServiceIdentity/generate-info.json
index 68a77cd41acd..dee5ef6c6c80 100644
--- a/src/ManagedServiceIdentity/generate-info.json
+++ b/src/ManagedServiceIdentity/generate-info.json
@@ -1,8 +1,8 @@
{
- "swagger_commit": "8d9e22058eb70f4d20baf1f0594b22f76f957c96",
+ "swagger_commit": "28c34aa8fa4298e2ad22a868410b0c50128fdd28",
"node": "v14.15.5",
"autorest": "`-- (empty)",
- "autorest_core": "3.9.3",
+ "autorest_core": "3.9.4",
"autorest_modelerfour": "4.15.414",
- "autorest_powershell": "3.0.0"
+ "autorest_powershell": "3.0.498"
}
diff --git a/src/ManagedServiceIdentity/generated/api/ManagedServiceIdentityClient.cs b/src/ManagedServiceIdentity/generated/api/ManagedServiceIdentityClient.cs
index 848903896d0a..8ad2973bb37c 100644
--- a/src/ManagedServiceIdentity/generated/api/ManagedServiceIdentityClient.cs
+++ b/src/ManagedServiceIdentity/generated/api/ManagedServiceIdentityClient.cs
@@ -14,6 +14,60 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity
public partial class ManagedServiceIdentityClient
{
+ ///
+ /// Create or update a federated identity credential under the specified user assigned identity.
+ ///
+ /// The Id of the Subscription to which the identity belongs.
+ /// The name of the resource group. The name is case insensitive.
+ /// The name of the identity resource.
+ /// The name of the federated identity credential resource.
+ /// Parameters to create or update the federated identity credential.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns 201 (Created).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsCreateOrUpdate(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2023-01-31";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/subscriptions/"
+ + global::System.Uri.EscapeDataString(subscriptionId)
+ + "/resourceGroups/"
+ + global::System.Uri.EscapeDataString(resourceGroupName)
+ + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
+ + global::System.Uri.EscapeDataString(resourceName)
+ + "/federatedIdentityCredentials/"
+ + global::System.Uri.EscapeDataString(federatedIdentityCredentialResourceName)
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Put, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // set body content
+ request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8);
+ request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.FederatedIdentityCredentialsCreateOrUpdate_Call(request,onOk,onCreated,onDefault,eventListener,sender);
+ }
+ }
+
///
/// Create or update a federated identity credential under the specified user assigned identity.
///
@@ -31,7 +85,7 @@ public partial class ManagedServiceIdentityClient
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsCreateOrUpdate(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsCreateOrUpdate1(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
{
var apiVersion = @"2022-01-31-preview";
// Constant Parameters
@@ -64,7 +118,7 @@ public partial class ManagedServiceIdentityClient
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.FederatedIdentityCredentialsCreateOrUpdate_Call(request,onOk,onCreated,onDefault,eventListener,sender);
+ await this.FederatedIdentityCredentialsCreateOrUpdate1_Call(request,onOk,onCreated,onDefault,eventListener,sender);
}
}
@@ -82,7 +136,7 @@ public partial class ManagedServiceIdentityClient
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsCreateOrUpdate1ViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
{
var apiVersion = @"2022-01-31-preview";
// Constant Parameters
@@ -128,12 +182,12 @@ public partial class ManagedServiceIdentityClient
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.FederatedIdentityCredentialsCreateOrUpdate_Call(request,onOk,onCreated,onDefault,eventListener,sender);
+ await this.FederatedIdentityCredentialsCreateOrUpdate1_Call(request,onOk,onCreated,onDefault,eventListener,sender);
}
}
///
- /// Actual wire call for method.
+ /// Actual wire call for method.
///
/// the prepared HttpRequestMessage to send.
/// a delegate that is called when the remote service returns 200 (OK).
@@ -145,7 +199,7 @@ public partial class ManagedServiceIdentityClient
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsCreateOrUpdate1_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -163,19 +217,19 @@ public partial class ManagedServiceIdentityClient
case global::System.Net.HttpStatusCode.OK:
{
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
- await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredential.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialAutoGenerated.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
break;
}
case global::System.Net.HttpStatusCode.Created:
{
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
- await onCreated(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredential.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ await onCreated(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialAutoGenerated.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
break;
}
default:
{
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
- await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorAutoGenerated.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
break;
}
}
@@ -191,7 +245,7 @@ public partial class ManagedServiceIdentityClient
}
///
- /// Validation method for method. Call this like the actual call,
+ /// Validation method for method. Call this like the actual call,
/// but you will get validation events back.
///
/// The Id of the Subscription to which the identity belongs.
@@ -203,7 +257,7 @@ public partial class ManagedServiceIdentityClient
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsCreateOrUpdate_Validate(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential body, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsCreateOrUpdate1_Validate(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated body, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
{
using( NoSynchronizationContext )
{
@@ -216,57 +270,13 @@ public partial class ManagedServiceIdentityClient
}
}
- /// Deletes the federated identity credential.
- /// The Id of the Subscription to which the identity belongs.
- /// The name of the Resource Group to which the identity belongs.
- /// The name of the identity resource.
- /// The name of the federated identity credential resource.
- /// a delegate that is called when the remote service returns 200 (OK).
- /// a delegate that is called when the remote service returns 204 (NoContent).
- /// a delegate that is called when the remote service returns default (any response code not handled
- /// elsewhere).
- /// an instance that will receive events.
- /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
- ///
- /// A that will be complete when handling of the response is completed.
- ///
- public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsDelete(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
- {
- var apiVersion = @"2022-01-31-preview";
- // Constant Parameters
- using( NoSynchronizationContext )
- {
- // construct URL
- var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
- "/subscriptions/"
- + global::System.Uri.EscapeDataString(subscriptionId)
- + "/resourceGroups/"
- + global::System.Uri.EscapeDataString(resourceGroupName)
- + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
- + global::System.Uri.EscapeDataString(resourceName)
- + "/federatedIdentityCredentials/"
- + global::System.Uri.EscapeDataString(federatedIdentityCredentialResourceName)
- + "?"
- + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
- ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
-
- await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
-
- // generate request object
- var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
- var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Delete, _url);
- await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
-
- await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
- // make the call
- await this.FederatedIdentityCredentialsDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender);
- }
- }
-
- /// Deletes the federated identity credential.
+ ///
+ /// Create or update a federated identity credential under the specified user assigned identity.
+ ///
///
+ /// Parameters to create or update the federated identity credential.
/// a delegate that is called when the remote service returns 200 (OK).
- /// a delegate that is called when the remote service returns 204 (NoContent).
+ /// a delegate that is called when the remote service returns 201 (Created).
/// a delegate that is called when the remote service returns default (any response code not handled
/// elsewhere).
/// an instance that will receive events.
@@ -274,9 +284,9 @@ public partial class ManagedServiceIdentityClient
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
{
- var apiVersion = @"2022-01-31-preview";
+ var apiVersion = @"2023-01-31";
// Constant Parameters
using( NoSynchronizationContext )
{
@@ -311,19 +321,25 @@ public partial class ManagedServiceIdentityClient
// generate request object
var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
- var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Delete, _url);
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Put, _url);
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // set body content
+ request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8);
+ request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.FederatedIdentityCredentialsDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender);
+ await this.FederatedIdentityCredentialsCreateOrUpdate_Call(request,onOk,onCreated,onDefault,eventListener,sender);
}
}
- /// Actual wire call for method.
+ ///
+ /// Actual wire call for method.
+ ///
/// the prepared HttpRequestMessage to send.
/// a delegate that is called when the remote service returns 200 (OK).
- /// a delegate that is called when the remote service returns 204 (NoContent).
+ /// a delegate that is called when the remote service returns 201 (Created).
/// a delegate that is called when the remote service returns default (any response code not handled
/// elsewhere).
/// an instance that will receive events.
@@ -331,7 +347,7 @@ public partial class ManagedServiceIdentityClient
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -349,19 +365,19 @@ public partial class ManagedServiceIdentityClient
case global::System.Net.HttpStatusCode.OK:
{
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
- await onOk(_response);
+ await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.FederatedIdentityCredential.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
break;
}
- case global::System.Net.HttpStatusCode.NoContent:
+ case global::System.Net.HttpStatusCode.Created:
{
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
- await onNoContent(_response);
+ await onCreated(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.FederatedIdentityCredential.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
break;
}
default:
{
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
- await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
break;
}
}
@@ -377,34 +393,88 @@ public partial class ManagedServiceIdentityClient
}
///
- /// Validation method for method. Call this like the actual call, but you
- /// will get validation events back.
+ /// Validation method for method. Call this like the actual call,
+ /// but you will get validation events back.
///
/// The Id of the Subscription to which the identity belongs.
- /// The name of the Resource Group to which the identity belongs.
+ /// The name of the resource group. The name is case insensitive.
/// The name of the identity resource.
/// The name of the federated identity credential resource.
+ /// Parameters to create or update the federated identity credential.
/// an instance that will receive events.
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsDelete_Validate(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsCreateOrUpdate_Validate(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential body, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
{
using( NoSynchronizationContext )
{
await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId);
await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName);
+ await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1);
+ await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90);
await eventListener.AssertNotNull(nameof(resourceName),resourceName);
await eventListener.AssertNotNull(nameof(federatedIdentityCredentialResourceName),federatedIdentityCredentialResourceName);
+ await eventListener.AssertRegEx(nameof(federatedIdentityCredentialResourceName),federatedIdentityCredentialResourceName,@"^[a-zA-Z0-9]{1}[a-zA-Z0-9-_]{2,119}$");
+ await eventListener.AssertNotNull(nameof(body), body);
+ await eventListener.AssertObjectIsValid(nameof(body), body);
}
}
- /// Gets the federated identity credential.
+ /// Deletes the federated identity credential.
+ /// The Id of the Subscription to which the identity belongs.
+ /// The name of the resource group. The name is case insensitive.
+ /// The name of the identity resource.
+ /// The name of the federated identity credential resource.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns 204 (NoContent).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsDelete(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2023-01-31";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/subscriptions/"
+ + global::System.Uri.EscapeDataString(subscriptionId)
+ + "/resourceGroups/"
+ + global::System.Uri.EscapeDataString(resourceGroupName)
+ + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
+ + global::System.Uri.EscapeDataString(resourceName)
+ + "/federatedIdentityCredentials/"
+ + global::System.Uri.EscapeDataString(federatedIdentityCredentialResourceName)
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Delete, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.FederatedIdentityCredentialsDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Deletes the federated identity credential.
/// The Id of the Subscription to which the identity belongs.
/// The name of the Resource Group to which the identity belongs.
/// The name of the identity resource.
/// The name of the federated identity credential resource.
/// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns 204 (NoContent).
/// a delegate that is called when the remote service returns default (any response code not handled
/// elsewhere).
/// an instance that will receive events.
@@ -412,7 +482,7 @@ public partial class ManagedServiceIdentityClient
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsGet(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsDelete1(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
{
var apiVersion = @"2022-01-31-preview";
// Constant Parameters
@@ -436,18 +506,19 @@ public partial class ManagedServiceIdentityClient
// generate request object
var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
- var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Delete, _url);
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.FederatedIdentityCredentialsGet_Call(request,onOk,onDefault,eventListener,sender);
+ await this.FederatedIdentityCredentialsDelete1_Call(request,onOk,onNoContent,onDefault,eventListener,sender);
}
}
- /// Gets the federated identity credential.
+ /// Deletes the federated identity credential.
///
/// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns 204 (NoContent).
/// a delegate that is called when the remote service returns default (any response code not handled
/// elsewhere).
/// an instance that will receive events.
@@ -455,7 +526,7 @@ public partial class ManagedServiceIdentityClient
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsDelete1ViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
{
var apiVersion = @"2022-01-31-preview";
// Constant Parameters
@@ -492,18 +563,19 @@ public partial class ManagedServiceIdentityClient
// generate request object
var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
- var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Delete, _url);
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.FederatedIdentityCredentialsGet_Call(request,onOk,onDefault,eventListener,sender);
+ await this.FederatedIdentityCredentialsDelete1_Call(request,onOk,onNoContent,onDefault,eventListener,sender);
}
}
- /// Actual wire call for method.
+ /// Actual wire call for method.
/// the prepared HttpRequestMessage to send.
/// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns 204 (NoContent).
/// a delegate that is called when the remote service returns default (any response code not handled
/// elsewhere).
/// an instance that will receive events.
@@ -511,7 +583,7 @@ public partial class ManagedServiceIdentityClient
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsDelete1_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -529,13 +601,19 @@ public partial class ManagedServiceIdentityClient
case global::System.Net.HttpStatusCode.OK:
{
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
- await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredential.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ await onOk(_response);
+ break;
+ }
+ case global::System.Net.HttpStatusCode.NoContent:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onNoContent(_response);
break;
}
default:
{
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
- await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorAutoGenerated.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
break;
}
}
@@ -551,8 +629,8 @@ public partial class ManagedServiceIdentityClient
}
///
- /// Validation method for method. Call this like the actual call, but you will
- /// get validation events back.
+ /// Validation method for method. Call this like the actual call, but you
+ /// will get validation events back.
///
/// The Id of the Subscription to which the identity belongs.
/// The name of the Resource Group to which the identity belongs.
@@ -562,7 +640,7 @@ public partial class ManagedServiceIdentityClient
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsGet_Validate(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsDelete1_Validate(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
{
using( NoSynchronizationContext )
{
@@ -573,17 +651,10 @@ public partial class ManagedServiceIdentityClient
}
}
- ///
- /// Lists all the federated identity credentials under the specified user assigned identity.
- ///
- /// The Id of the Subscription to which the identity belongs.
- /// The name of the Resource Group to which the identity belongs.
- /// The name of the identity resource.
- /// Number of records to return.
- /// A skip token is used to continue retrieving items after an operation returns a partial result.
- /// If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter
- /// that specifies a starting point to use for subsequent calls.
+ /// Deletes the federated identity credential.
+ ///
/// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns 204 (NoContent).
/// a delegate that is called when the remote service returns default (any response code not handled
/// elsewhere).
/// an instance that will receive events.
@@ -591,26 +662,36 @@ public partial class ManagedServiceIdentityClient
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsList(string subscriptionId, string resourceGroupName, string resourceName, int? Top, string Skiptoken, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
{
- var apiVersion = @"2022-01-31-preview";
+ var apiVersion = @"2023-01-31";
// Constant Parameters
using( NoSynchronizationContext )
{
+ // verify that Identity format is an exact match for uri
+
+ var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.ManagedIdentity/userAssignedIdentities/(?[^/]+)/federatedIdentityCredentials/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity);
+ if (!_match.Success)
+ {
+ throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}/federatedIdentityCredentials/{federatedIdentityCredentialResourceName}'");
+ }
+
+ // replace URI parameters with values from identity
+ var subscriptionId = _match.Groups["subscriptionId"].Value;
+ var resourceGroupName = _match.Groups["resourceGroupName"].Value;
+ var resourceName = _match.Groups["resourceName"].Value;
+ var federatedIdentityCredentialResourceName = _match.Groups["federatedIdentityCredentialResourceName"].Value;
// construct URL
var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
"/subscriptions/"
- + global::System.Uri.EscapeDataString(subscriptionId)
+ + subscriptionId
+ "/resourceGroups/"
- + global::System.Uri.EscapeDataString(resourceGroupName)
+ + resourceGroupName
+ "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
- + global::System.Uri.EscapeDataString(resourceName)
- + "/federatedIdentityCredentials"
+ + resourceName
+ + "/federatedIdentityCredentials/"
+ + federatedIdentityCredentialResourceName
+ "?"
- + (null == Top ? global::System.String.Empty : "$top=" + global::System.Uri.EscapeDataString(Top.ToString()))
- + "&"
- + (string.IsNullOrEmpty(Skiptoken) ? global::System.String.Empty : "$skiptoken=" + global::System.Uri.EscapeDataString(Skiptoken))
- + "&"
+ "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
@@ -618,24 +699,1904 @@ public partial class ManagedServiceIdentityClient
// generate request object
var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
- var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Delete, _url);
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.FederatedIdentityCredentialsList_Call(request,onOk,onDefault,eventListener,sender);
+ await this.FederatedIdentityCredentialsDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender);
}
}
- ///
- /// Lists all the federated identity credentials under the specified user assigned identity.
- ///
- ///
- /// Number of records to return.
- /// A skip token is used to continue retrieving items after an operation returns a partial result.
- /// If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter
+ /// Actual wire call for method.
+ /// the prepared HttpRequestMessage to send.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns 204 (NoContent).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ using( NoSynchronizationContext )
+ {
+ global::System.Net.Http.HttpResponseMessage _response = null;
+ try
+ {
+ var sendTask = sender.SendAsync(request, eventListener);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; }
+ _response = await sendTask;
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ var _contentType = _response.Content.Headers.ContentType?.MediaType;
+
+ switch ( _response.StatusCode )
+ {
+ case global::System.Net.HttpStatusCode.OK:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onOk(_response);
+ break;
+ }
+ case global::System.Net.HttpStatusCode.NoContent:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onNoContent(_response);
+ break;
+ }
+ default:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ }
+ }
+ finally
+ {
+ // finally statements
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.Finally, request, _response);
+ _response?.Dispose();
+ request?.Dispose();
+ }
+ }
+ }
+
+ ///
+ /// Validation method for method. Call this like the actual call, but you
+ /// will get validation events back.
+ ///
+ /// The Id of the Subscription to which the identity belongs.
+ /// The name of the resource group. The name is case insensitive.
+ /// The name of the identity resource.
+ /// The name of the federated identity credential resource.
+ /// an instance that will receive events.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsDelete_Validate(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
+ {
+ using( NoSynchronizationContext )
+ {
+ await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId);
+ await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName);
+ await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1);
+ await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90);
+ await eventListener.AssertNotNull(nameof(resourceName),resourceName);
+ await eventListener.AssertNotNull(nameof(federatedIdentityCredentialResourceName),federatedIdentityCredentialResourceName);
+ await eventListener.AssertRegEx(nameof(federatedIdentityCredentialResourceName),federatedIdentityCredentialResourceName,@"^[a-zA-Z0-9]{1}[a-zA-Z0-9-_]{2,119}$");
+ }
+ }
+
+ /// Gets the federated identity credential.
+ /// The Id of the Subscription to which the identity belongs.
+ /// The name of the resource group. The name is case insensitive.
+ /// The name of the identity resource.
+ /// The name of the federated identity credential resource.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsGet(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2023-01-31";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/subscriptions/"
+ + global::System.Uri.EscapeDataString(subscriptionId)
+ + "/resourceGroups/"
+ + global::System.Uri.EscapeDataString(resourceGroupName)
+ + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
+ + global::System.Uri.EscapeDataString(resourceName)
+ + "/federatedIdentityCredentials/"
+ + global::System.Uri.EscapeDataString(federatedIdentityCredentialResourceName)
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.FederatedIdentityCredentialsGet_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Gets the federated identity credential.
+ /// The Id of the Subscription to which the identity belongs.
+ /// The name of the Resource Group to which the identity belongs.
+ /// The name of the identity resource.
+ /// The name of the federated identity credential resource.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsGet1(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2022-01-31-preview";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/subscriptions/"
+ + global::System.Uri.EscapeDataString(subscriptionId)
+ + "/resourceGroups/"
+ + global::System.Uri.EscapeDataString(resourceGroupName)
+ + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
+ + global::System.Uri.EscapeDataString(resourceName)
+ + "/federatedIdentityCredentials/"
+ + global::System.Uri.EscapeDataString(federatedIdentityCredentialResourceName)
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.FederatedIdentityCredentialsGet1_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Gets the federated identity credential.
+ ///
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsGet1ViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2022-01-31-preview";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // verify that Identity format is an exact match for uri
+
+ var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.ManagedIdentity/userAssignedIdentities/(?[^/]+)/federatedIdentityCredentials/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity);
+ if (!_match.Success)
+ {
+ throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}/federatedIdentityCredentials/{federatedIdentityCredentialResourceName}'");
+ }
+
+ // replace URI parameters with values from identity
+ var subscriptionId = _match.Groups["subscriptionId"].Value;
+ var resourceGroupName = _match.Groups["resourceGroupName"].Value;
+ var resourceName = _match.Groups["resourceName"].Value;
+ var federatedIdentityCredentialResourceName = _match.Groups["federatedIdentityCredentialResourceName"].Value;
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/subscriptions/"
+ + subscriptionId
+ + "/resourceGroups/"
+ + resourceGroupName
+ + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
+ + resourceName
+ + "/federatedIdentityCredentials/"
+ + federatedIdentityCredentialResourceName
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.FederatedIdentityCredentialsGet1_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Actual wire call for method.
+ /// the prepared HttpRequestMessage to send.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsGet1_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ using( NoSynchronizationContext )
+ {
+ global::System.Net.Http.HttpResponseMessage _response = null;
+ try
+ {
+ var sendTask = sender.SendAsync(request, eventListener);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; }
+ _response = await sendTask;
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ var _contentType = _response.Content.Headers.ContentType?.MediaType;
+
+ switch ( _response.StatusCode )
+ {
+ case global::System.Net.HttpStatusCode.OK:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialAutoGenerated.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ default:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorAutoGenerated.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ }
+ }
+ finally
+ {
+ // finally statements
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.Finally, request, _response);
+ _response?.Dispose();
+ request?.Dispose();
+ }
+ }
+ }
+
+ ///
+ /// Validation method for method. Call this like the actual call, but you
+ /// will get validation events back.
+ ///
+ /// The Id of the Subscription to which the identity belongs.
+ /// The name of the Resource Group to which the identity belongs.
+ /// The name of the identity resource.
+ /// The name of the federated identity credential resource.
+ /// an instance that will receive events.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsGet1_Validate(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
+ {
+ using( NoSynchronizationContext )
+ {
+ await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId);
+ await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName);
+ await eventListener.AssertNotNull(nameof(resourceName),resourceName);
+ await eventListener.AssertNotNull(nameof(federatedIdentityCredentialResourceName),federatedIdentityCredentialResourceName);
+ }
+ }
+
+ /// Gets the federated identity credential.
+ ///
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2023-01-31";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // verify that Identity format is an exact match for uri
+
+ var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.ManagedIdentity/userAssignedIdentities/(?[^/]+)/federatedIdentityCredentials/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity);
+ if (!_match.Success)
+ {
+ throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}/federatedIdentityCredentials/{federatedIdentityCredentialResourceName}'");
+ }
+
+ // replace URI parameters with values from identity
+ var subscriptionId = _match.Groups["subscriptionId"].Value;
+ var resourceGroupName = _match.Groups["resourceGroupName"].Value;
+ var resourceName = _match.Groups["resourceName"].Value;
+ var federatedIdentityCredentialResourceName = _match.Groups["federatedIdentityCredentialResourceName"].Value;
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/subscriptions/"
+ + subscriptionId
+ + "/resourceGroups/"
+ + resourceGroupName
+ + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
+ + resourceName
+ + "/federatedIdentityCredentials/"
+ + federatedIdentityCredentialResourceName
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.FederatedIdentityCredentialsGet_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Actual wire call for method.
+ /// the prepared HttpRequestMessage to send.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ using( NoSynchronizationContext )
+ {
+ global::System.Net.Http.HttpResponseMessage _response = null;
+ try
+ {
+ var sendTask = sender.SendAsync(request, eventListener);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; }
+ _response = await sendTask;
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ var _contentType = _response.Content.Headers.ContentType?.MediaType;
+
+ switch ( _response.StatusCode )
+ {
+ case global::System.Net.HttpStatusCode.OK:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.FederatedIdentityCredential.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ default:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ }
+ }
+ finally
+ {
+ // finally statements
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.Finally, request, _response);
+ _response?.Dispose();
+ request?.Dispose();
+ }
+ }
+ }
+
+ ///
+ /// Validation method for method. Call this like the actual call, but you will
+ /// get validation events back.
+ ///
+ /// The Id of the Subscription to which the identity belongs.
+ /// The name of the resource group. The name is case insensitive.
+ /// The name of the identity resource.
+ /// The name of the federated identity credential resource.
+ /// an instance that will receive events.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsGet_Validate(string subscriptionId, string resourceGroupName, string resourceName, string federatedIdentityCredentialResourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
+ {
+ using( NoSynchronizationContext )
+ {
+ await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId);
+ await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName);
+ await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1);
+ await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90);
+ await eventListener.AssertNotNull(nameof(resourceName),resourceName);
+ await eventListener.AssertNotNull(nameof(federatedIdentityCredentialResourceName),federatedIdentityCredentialResourceName);
+ await eventListener.AssertRegEx(nameof(federatedIdentityCredentialResourceName),federatedIdentityCredentialResourceName,@"^[a-zA-Z0-9]{1}[a-zA-Z0-9-_]{2,119}$");
+ }
+ }
+
+ ///
+ /// Lists all the federated identity credentials under the specified user assigned identity.
+ ///
+ /// The Id of the Subscription to which the identity belongs.
+ /// The name of the resource group. The name is case insensitive.
+ /// The name of the identity resource.
+ /// Number of records to return.
+ /// A skip token is used to continue retrieving items after an operation returns a partial result.
+ /// If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter
+ /// that specifies a starting point to use for subsequent calls.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsList(string subscriptionId, string resourceGroupName, string resourceName, int? Top, string Skiptoken, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2023-01-31";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/subscriptions/"
+ + global::System.Uri.EscapeDataString(subscriptionId)
+ + "/resourceGroups/"
+ + global::System.Uri.EscapeDataString(resourceGroupName)
+ + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
+ + global::System.Uri.EscapeDataString(resourceName)
+ + "/federatedIdentityCredentials"
+ + "?"
+ + (null == Top ? global::System.String.Empty : "$top=" + global::System.Uri.EscapeDataString(Top.ToString()))
+ + "&"
+ + (string.IsNullOrEmpty(Skiptoken) ? global::System.String.Empty : "$skiptoken=" + global::System.Uri.EscapeDataString(Skiptoken))
+ + "&"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.FederatedIdentityCredentialsList_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ ///
+ /// Lists all the federated identity credentials under the specified user assigned identity.
+ ///
+ /// The Id of the Subscription to which the identity belongs.
+ /// The name of the Resource Group to which the identity belongs.
+ /// The name of the identity resource.
+ /// Number of records to return.
+ /// A skip token is used to continue retrieving items after an operation returns a partial result.
+ /// If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter
+ /// that specifies a starting point to use for subsequent calls.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsList1(string subscriptionId, string resourceGroupName, string resourceName, int? Top, string Skiptoken, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2022-01-31-preview";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/subscriptions/"
+ + global::System.Uri.EscapeDataString(subscriptionId)
+ + "/resourceGroups/"
+ + global::System.Uri.EscapeDataString(resourceGroupName)
+ + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
+ + global::System.Uri.EscapeDataString(resourceName)
+ + "/federatedIdentityCredentials"
+ + "?"
+ + (null == Top ? global::System.String.Empty : "$top=" + global::System.Uri.EscapeDataString(Top.ToString()))
+ + "&"
+ + (string.IsNullOrEmpty(Skiptoken) ? global::System.String.Empty : "$skiptoken=" + global::System.Uri.EscapeDataString(Skiptoken))
+ + "&"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.FederatedIdentityCredentialsList1_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ ///
+ /// Lists all the federated identity credentials under the specified user assigned identity.
+ ///
+ ///
+ /// Number of records to return.
+ /// A skip token is used to continue retrieving items after an operation returns a partial result.
+ /// If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter
+ /// that specifies a starting point to use for subsequent calls.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsList1ViaIdentity(global::System.String viaIdentity, int? Top, string Skiptoken, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2022-01-31-preview";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // verify that Identity format is an exact match for uri
+
+ var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.ManagedIdentity/userAssignedIdentities/(?[^/]+)/federatedIdentityCredentials$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity);
+ if (!_match.Success)
+ {
+ throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}/federatedIdentityCredentials'");
+ }
+
+ // replace URI parameters with values from identity
+ var subscriptionId = _match.Groups["subscriptionId"].Value;
+ var resourceGroupName = _match.Groups["resourceGroupName"].Value;
+ var resourceName = _match.Groups["resourceName"].Value;
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/subscriptions/"
+ + subscriptionId
+ + "/resourceGroups/"
+ + resourceGroupName
+ + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
+ + resourceName
+ + "/federatedIdentityCredentials"
+ + "?"
+ + (null == Top ? global::System.String.Empty : "$top=" + global::System.Uri.EscapeDataString(Top.ToString()))
+ + "&"
+ + (string.IsNullOrEmpty(Skiptoken) ? global::System.String.Empty : "$skiptoken=" + global::System.Uri.EscapeDataString(Skiptoken))
+ + "&"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.FederatedIdentityCredentialsList1_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Actual wire call for method.
+ /// the prepared HttpRequestMessage to send.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsList1_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ using( NoSynchronizationContext )
+ {
+ global::System.Net.Http.HttpResponseMessage _response = null;
+ try
+ {
+ var sendTask = sender.SendAsync(request, eventListener);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; }
+ _response = await sendTask;
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ var _contentType = _response.Content.Headers.ContentType?.MediaType;
+
+ switch ( _response.StatusCode )
+ {
+ case global::System.Net.HttpStatusCode.OK:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialsListResultAutoGenerated.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ default:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorAutoGenerated.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ }
+ }
+ finally
+ {
+ // finally statements
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.Finally, request, _response);
+ _response?.Dispose();
+ request?.Dispose();
+ }
+ }
+ }
+
+ ///
+ /// Validation method for method. Call this like the actual call, but you
+ /// will get validation events back.
+ ///
+ /// The Id of the Subscription to which the identity belongs.
+ /// The name of the Resource Group to which the identity belongs.
+ /// The name of the identity resource.
+ /// Number of records to return.
+ /// A skip token is used to continue retrieving items after an operation returns a partial result.
+ /// If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter
+ /// that specifies a starting point to use for subsequent calls.
+ /// an instance that will receive events.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsList1_Validate(string subscriptionId, string resourceGroupName, string resourceName, int? Top, string Skiptoken, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
+ {
+ using( NoSynchronizationContext )
+ {
+ await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId);
+ await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName);
+ await eventListener.AssertNotNull(nameof(resourceName),resourceName);
+ await eventListener.AssertIsGreaterThanOrEqual(nameof(Top),Top,1);
+ await eventListener.AssertNotNull(nameof(Skiptoken),Skiptoken);
+ }
+ }
+
+ ///
+ /// Lists all the federated identity credentials under the specified user assigned identity.
+ ///
+ ///
+ /// Number of records to return.
+ /// A skip token is used to continue retrieving items after an operation returns a partial result.
+ /// If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter
+ /// that specifies a starting point to use for subsequent calls.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task FederatedIdentityCredentialsListViaIdentity(global::System.String viaIdentity, int? Top, string Skiptoken, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2023-01-31";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // verify that Identity format is an exact match for uri
+
+ var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.ManagedIdentity/userAssignedIdentities/(?[^/]+)/federatedIdentityCredentials$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity);
+ if (!_match.Success)
+ {
+ throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}/federatedIdentityCredentials'");
+ }
+
+ // replace URI parameters with values from identity
+ var subscriptionId = _match.Groups["subscriptionId"].Value;
+ var resourceGroupName = _match.Groups["resourceGroupName"].Value;
+ var resourceName = _match.Groups["resourceName"].Value;
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/subscriptions/"
+ + subscriptionId
+ + "/resourceGroups/"
+ + resourceGroupName
+ + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
+ + resourceName
+ + "/federatedIdentityCredentials"
+ + "?"
+ + (null == Top ? global::System.String.Empty : "$top=" + global::System.Uri.EscapeDataString(Top.ToString()))
+ + "&"
+ + (string.IsNullOrEmpty(Skiptoken) ? global::System.String.Empty : "$skiptoken=" + global::System.Uri.EscapeDataString(Skiptoken))
+ + "&"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.FederatedIdentityCredentialsList_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Actual wire call for method.
+ /// the prepared HttpRequestMessage to send.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ using( NoSynchronizationContext )
+ {
+ global::System.Net.Http.HttpResponseMessage _response = null;
+ try
+ {
+ var sendTask = sender.SendAsync(request, eventListener);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; }
+ _response = await sendTask;
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ var _contentType = _response.Content.Headers.ContentType?.MediaType;
+
+ switch ( _response.StatusCode )
+ {
+ case global::System.Net.HttpStatusCode.OK:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.FederatedIdentityCredentialsListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ default:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ }
+ }
+ finally
+ {
+ // finally statements
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.Finally, request, _response);
+ _response?.Dispose();
+ request?.Dispose();
+ }
+ }
+ }
+
+ ///
+ /// Validation method for method. Call this like the actual call, but you
+ /// will get validation events back.
+ ///
+ /// The Id of the Subscription to which the identity belongs.
+ /// The name of the resource group. The name is case insensitive.
+ /// The name of the identity resource.
+ /// Number of records to return.
+ /// A skip token is used to continue retrieving items after an operation returns a partial result.
+ /// If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter
/// that specifies a starting point to use for subsequent calls.
+ /// an instance that will receive events.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task FederatedIdentityCredentialsList_Validate(string subscriptionId, string resourceGroupName, string resourceName, int? Top, string Skiptoken, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
+ {
+ using( NoSynchronizationContext )
+ {
+ await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId);
+ await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName);
+ await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1);
+ await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90);
+ await eventListener.AssertNotNull(nameof(resourceName),resourceName);
+ await eventListener.AssertIsGreaterThanOrEqual(nameof(Top),Top,1);
+ await eventListener.AssertNotNull(nameof(Skiptoken),Skiptoken);
+ }
+ }
+
+ /// Lists available operations for the Microsoft.ManagedIdentity provider
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task OperationsList(global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2023-01-31";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/providers/Microsoft.ManagedIdentity/operations"
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.OperationsList_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Lists available operations for the Microsoft.ManagedIdentity provider
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task OperationsList1(global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2022-01-31-preview";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/providers/Microsoft.ManagedIdentity/operations"
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.OperationsList1_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Lists available operations for the Microsoft.ManagedIdentity provider
+ ///
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task OperationsList1ViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2022-01-31-preview";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // verify that Identity format is an exact match for uri
+
+ var _match = new global::System.Text.RegularExpressions.Regex("^/providers/Microsoft.ManagedIdentity/operations$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity);
+ if (!_match.Success)
+ {
+ throw new global::System.Exception("Invalid identity for URI '/providers/Microsoft.ManagedIdentity/operations'");
+ }
+
+ // replace URI parameters with values from identity
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/providers/Microsoft.ManagedIdentity/operations"
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.OperationsList1_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Actual wire call for method.
+ /// the prepared HttpRequestMessage to send.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task OperationsList1_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ using( NoSynchronizationContext )
+ {
+ global::System.Net.Http.HttpResponseMessage _response = null;
+ try
+ {
+ var sendTask = sender.SendAsync(request, eventListener);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; }
+ _response = await sendTask;
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ var _contentType = _response.Content.Headers.ContentType?.MediaType;
+
+ switch ( _response.StatusCode )
+ {
+ case global::System.Net.HttpStatusCode.OK:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.OperationListResultAutoGenerated.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ default:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorAutoGenerated.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ }
+ }
+ finally
+ {
+ // finally statements
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.Finally, request, _response);
+ _response?.Dispose();
+ request?.Dispose();
+ }
+ }
+ }
+
+ ///
+ /// Validation method for method. Call this like the actual call, but you will get validation
+ /// events back.
+ ///
+ /// an instance that will receive events.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task OperationsList1_Validate(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
+ {
+ using( NoSynchronizationContext )
+ {
+
+ }
+ }
+
+ /// Lists available operations for the Microsoft.ManagedIdentity provider
+ ///
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task OperationsListViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2023-01-31";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // verify that Identity format is an exact match for uri
+
+ var _match = new global::System.Text.RegularExpressions.Regex("^/providers/Microsoft.ManagedIdentity/operations$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity);
+ if (!_match.Success)
+ {
+ throw new global::System.Exception("Invalid identity for URI '/providers/Microsoft.ManagedIdentity/operations'");
+ }
+
+ // replace URI parameters with values from identity
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/providers/Microsoft.ManagedIdentity/operations"
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.OperationsList_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Actual wire call for method.
+ /// the prepared HttpRequestMessage to send.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task OperationsList_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ using( NoSynchronizationContext )
+ {
+ global::System.Net.Http.HttpResponseMessage _response = null;
+ try
+ {
+ var sendTask = sender.SendAsync(request, eventListener);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; }
+ _response = await sendTask;
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ var _contentType = _response.Content.Headers.ContentType?.MediaType;
+
+ switch ( _response.StatusCode )
+ {
+ case global::System.Net.HttpStatusCode.OK:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.OperationListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ default:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ }
+ }
+ finally
+ {
+ // finally statements
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.Finally, request, _response);
+ _response?.Dispose();
+ request?.Dispose();
+ }
+ }
+ }
+
+ ///
+ /// Validation method for method. Call this like the actual call, but you will get validation
+ /// events back.
+ ///
+ /// an instance that will receive events.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task OperationsList_Validate(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
+ {
+ using( NoSynchronizationContext )
+ {
+
+ }
+ }
+
+ /// Gets the systemAssignedIdentity available under the specified RP scope.
+ /// The resource provider scope of the resource. Parent resource being extended by Managed Identities.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task SystemAssignedIdentitiesGetByScope(string scope, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2023-01-31";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/"
+ + (scope)
+ + "/providers/Microsoft.ManagedIdentity/identities/default"
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.SystemAssignedIdentitiesGetByScope_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Gets the systemAssignedIdentity available under the specified RP scope.
+ /// The resource provider scope of the resource. Parent resource being extended by Managed Identities.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task SystemAssignedIdentitiesGetByScope1(string scope, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2022-01-31-preview";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/"
+ + (scope)
+ + "/providers/Microsoft.ManagedIdentity/identities/default"
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.SystemAssignedIdentitiesGetByScope1_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Gets the systemAssignedIdentity available under the specified RP scope.
+ ///
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task SystemAssignedIdentitiesGetByScope1ViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2022-01-31-preview";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // verify that Identity format is an exact match for uri
+
+ var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.ManagedIdentity/identities/default$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity);
+ if (!_match.Success)
+ {
+ throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.ManagedIdentity/identities/default'");
+ }
+
+ // replace URI parameters with values from identity
+ var scope = _match.Groups["scope"].Value;
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/"
+ + scope
+ + "/providers/Microsoft.ManagedIdentity/identities/default"
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.SystemAssignedIdentitiesGetByScope1_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Actual wire call for method.
+ /// the prepared HttpRequestMessage to send.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task SystemAssignedIdentitiesGetByScope1_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ using( NoSynchronizationContext )
+ {
+ global::System.Net.Http.HttpResponseMessage _response = null;
+ try
+ {
+ var sendTask = sender.SendAsync(request, eventListener);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; }
+ _response = await sendTask;
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ var _contentType = _response.Content.Headers.ContentType?.MediaType;
+
+ switch ( _response.StatusCode )
+ {
+ case global::System.Net.HttpStatusCode.OK:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityAutoGenerated.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ default:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorAutoGenerated.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ }
+ }
+ finally
+ {
+ // finally statements
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.Finally, request, _response);
+ _response?.Dispose();
+ request?.Dispose();
+ }
+ }
+ }
+
+ ///
+ /// Validation method for method. Call this like the actual call, but you
+ /// will get validation events back.
+ ///
+ /// The resource provider scope of the resource. Parent resource being extended by Managed Identities.
+ /// an instance that will receive events.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task SystemAssignedIdentitiesGetByScope1_Validate(string scope, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
+ {
+ using( NoSynchronizationContext )
+ {
+ await eventListener.AssertNotNull(nameof(scope),scope);
+ }
+ }
+
+ /// Gets the systemAssignedIdentity available under the specified RP scope.
+ ///
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task SystemAssignedIdentitiesGetByScopeViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2023-01-31";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // verify that Identity format is an exact match for uri
+
+ var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.ManagedIdentity/identities/default$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity);
+ if (!_match.Success)
+ {
+ throw new global::System.Exception("Invalid identity for URI '/{scope}/providers/Microsoft.ManagedIdentity/identities/default'");
+ }
+
+ // replace URI parameters with values from identity
+ var scope = _match.Groups["scope"].Value;
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/"
+ + scope
+ + "/providers/Microsoft.ManagedIdentity/identities/default"
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.SystemAssignedIdentitiesGetByScope_Call(request,onOk,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Actual wire call for method.
+ /// the prepared HttpRequestMessage to send.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task SystemAssignedIdentitiesGetByScope_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ using( NoSynchronizationContext )
+ {
+ global::System.Net.Http.HttpResponseMessage _response = null;
+ try
+ {
+ var sendTask = sender.SendAsync(request, eventListener);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; }
+ _response = await sendTask;
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ var _contentType = _response.Content.Headers.ContentType?.MediaType;
+
+ switch ( _response.StatusCode )
+ {
+ case global::System.Net.HttpStatusCode.OK:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.SystemAssignedIdentity.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ default:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ }
+ }
+ finally
+ {
+ // finally statements
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.Finally, request, _response);
+ _response?.Dispose();
+ request?.Dispose();
+ }
+ }
+ }
+
+ ///
+ /// Validation method for method. Call this like the actual call, but you
+ /// will get validation events back.
+ ///
+ /// The resource provider scope of the resource. Parent resource being extended by Managed Identities.
+ /// an instance that will receive events.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task SystemAssignedIdentitiesGetByScope_Validate(string scope, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
+ {
+ using( NoSynchronizationContext )
+ {
+ await eventListener.AssertNotNull(nameof(scope),scope);
+ }
+ }
+
+ /// Create or update an identity in the specified subscription and resource group.
+ /// The Id of the Subscription to which the identity belongs.
+ /// The name of the Resource Group to which the identity belongs.
+ /// The name of the identity resource.
+ /// Parameters to create or update the identity
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns 201 (Created).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task UserAssignedIdentitiesCreateOrUpdate(string subscriptionId, string resourceGroupName, string resourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2023-01-31";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/subscriptions/"
+ + global::System.Uri.EscapeDataString(subscriptionId)
+ + "/resourceGroups/"
+ + global::System.Uri.EscapeDataString(resourceGroupName)
+ + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
+ + global::System.Uri.EscapeDataString(resourceName)
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Put, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // set body content
+ request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8);
+ request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.UserAssignedIdentitiesCreateOrUpdate_Call(request,onOk,onCreated,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Create or update an identity in the specified subscription and resource group.
+ /// The Id of the Subscription to which the identity belongs.
+ /// The name of the Resource Group to which the identity belongs.
+ /// The name of the identity resource.
+ /// Parameters to create or update the identity
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns 201 (Created).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task UserAssignedIdentitiesCreateOrUpdate1(string subscriptionId, string resourceGroupName, string resourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2022-01-31-preview";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/subscriptions/"
+ + global::System.Uri.EscapeDataString(subscriptionId)
+ + "/resourceGroups/"
+ + global::System.Uri.EscapeDataString(resourceGroupName)
+ + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
+ + global::System.Uri.EscapeDataString(resourceName)
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Put, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // set body content
+ request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8);
+ request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.UserAssignedIdentitiesCreateOrUpdate1_Call(request,onOk,onCreated,onDefault,eventListener,sender);
+ }
+ }
+
+ /// Create or update an identity in the specified subscription and resource group.
+ ///
+ /// Parameters to create or update the identity
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns 201 (Created).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task UserAssignedIdentitiesCreateOrUpdate1ViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2022-01-31-preview";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // verify that Identity format is an exact match for uri
+
+ var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.ManagedIdentity/userAssignedIdentities/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity);
+ if (!_match.Success)
+ {
+ throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}'");
+ }
+
+ // replace URI parameters with values from identity
+ var subscriptionId = _match.Groups["subscriptionId"].Value;
+ var resourceGroupName = _match.Groups["resourceGroupName"].Value;
+ var resourceName = _match.Groups["resourceName"].Value;
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/subscriptions/"
+ + subscriptionId
+ + "/resourceGroups/"
+ + resourceGroupName
+ + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
+ + resourceName
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Put, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // set body content
+ request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8);
+ request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.UserAssignedIdentitiesCreateOrUpdate1_Call(request,onOk,onCreated,onDefault,eventListener,sender);
+ }
+ }
+
+ ///
+ /// Actual wire call for method.
+ ///
+ /// the prepared HttpRequestMessage to send.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns 201 (Created).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesCreateOrUpdate1_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ using( NoSynchronizationContext )
+ {
+ global::System.Net.Http.HttpResponseMessage _response = null;
+ try
+ {
+ var sendTask = sender.SendAsync(request, eventListener);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; }
+ _response = await sendTask;
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ var _contentType = _response.Content.Headers.ContentType?.MediaType;
+
+ switch ( _response.StatusCode )
+ {
+ case global::System.Net.HttpStatusCode.OK:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityAutoGenerated.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ case global::System.Net.HttpStatusCode.Created:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onCreated(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityAutoGenerated.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ default:
+ {
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; }
+ await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorAutoGenerated.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) ));
+ break;
+ }
+ }
+ }
+ finally
+ {
+ // finally statements
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.Finally, request, _response);
+ _response?.Dispose();
+ request?.Dispose();
+ }
+ }
+ }
+
+ ///
+ /// Validation method for method. Call this like the actual call, but
+ /// you will get validation events back.
+ ///
+ /// The Id of the Subscription to which the identity belongs.
+ /// The name of the Resource Group to which the identity belongs.
+ /// The name of the identity resource.
+ /// Parameters to create or update the identity
+ /// an instance that will receive events.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesCreateOrUpdate1_Validate(string subscriptionId, string resourceGroupName, string resourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated body, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener)
+ {
+ using( NoSynchronizationContext )
+ {
+ await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId);
+ await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName);
+ await eventListener.AssertNotNull(nameof(resourceName),resourceName);
+ await eventListener.AssertNotNull(nameof(body), body);
+ await eventListener.AssertObjectIsValid(nameof(body), body);
+ }
+ }
+
+ /// Create or update an identity in the specified subscription and resource group.
+ ///
+ /// Parameters to create or update the identity
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns 201 (Created).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ public async global::System.Threading.Tasks.Task UserAssignedIdentitiesCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync sender)
+ {
+ var apiVersion = @"2023-01-31";
+ // Constant Parameters
+ using( NoSynchronizationContext )
+ {
+ // verify that Identity format is an exact match for uri
+
+ var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/Microsoft.ManagedIdentity/userAssignedIdentities/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity);
+ if (!_match.Success)
+ {
+ throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}'");
+ }
+
+ // replace URI parameters with values from identity
+ var subscriptionId = _match.Groups["subscriptionId"].Value;
+ var resourceGroupName = _match.Groups["resourceGroupName"].Value;
+ var resourceName = _match.Groups["resourceName"].Value;
+ // construct URL
+ var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace(
+ "/subscriptions/"
+ + subscriptionId
+ + "/resourceGroups/"
+ + resourceGroupName
+ + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"
+ + resourceName
+ + "?"
+ + "api-version=" + global::System.Uri.EscapeDataString(apiVersion)
+ ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2");
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.URLCreated, pathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ // generate request object
+ var _url = new global::System.Uri($"https://management.azure.com{pathAndQuery}");
+ var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Put, _url);
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; }
+
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // set body content
+ request.Content = new global::System.Net.Http.StringContent(null != body ? body.ToJson(null).ToString() : @"{}", global::System.Text.Encoding.UTF8);
+ request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
+ await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
+ // make the call
+ await this.UserAssignedIdentitiesCreateOrUpdate_Call(request,onOk,onCreated,onDefault,eventListener,sender);
+ }
+ }
+
+ ///
+ /// Actual wire call for method.
+ ///
+ /// the prepared HttpRequestMessage to send.
+ /// a delegate that is called when the remote service returns 200 (OK).
+ /// a delegate that is called when the remote service returns 201 (Created).
+ /// a delegate that is called when the remote service returns default (any response code not handled
+ /// elsewhere).
+ /// an instance that will receive events.
+ /// an instance of an Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.ISendAsync pipeline to use to make the request.
+ ///
+ /// A that will be complete when handling of the response is completed.
+ ///
+ internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func